switched to vim-plug
This commit is contained in:
parent
cd103b5170
commit
ca5f1cbd88
2 changed files with 24 additions and 22 deletions
3
rc.lua
3
rc.lua
|
@ -618,6 +618,9 @@ awful.rules.rules = {
|
||||||
class = {
|
class = {
|
||||||
'Audacious',
|
'Audacious',
|
||||||
'Qmmp'
|
'Qmmp'
|
||||||
|
},
|
||||||
|
role = {
|
||||||
|
'bubble'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
properties = {
|
properties = {
|
||||||
|
|
43
vimrc
43
vimrc
|
@ -79,35 +79,34 @@ if v:version >= 700
|
||||||
let g:sh_indent_case_labels=1
|
let g:sh_indent_case_labels=1
|
||||||
|
|
||||||
" plugins
|
" plugins
|
||||||
if filereadable(expand("$HOME/.vim/bundle/Vundle.vim/autoload/vundle.vim"))
|
if filereadable(expand("$HOME/.vim/plugged/vim-plug/plug.vim"))
|
||||||
filetype off
|
|
||||||
set noshowmode
|
set noshowmode
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim/
|
source ~/.vim/plugged/vim-plug/plug.vim
|
||||||
silent! call vundle#begin()
|
call plug#begin('~/.vim/plugged')
|
||||||
Plugin 'gmarik/Vundle.vim' "plugin manager
|
Plug 'junegunn/vim-plug' "plugin manager
|
||||||
|
|
||||||
" general plugins
|
" general plugins
|
||||||
Plugin 'Lokaltog/vim-easymotion' "easy motion
|
Plug 'Lokaltog/vim-easymotion' "easy motion
|
||||||
Plugin 'Shougo/unite.vim' "fuzzy file open
|
Plug 'Shougo/unite.vim' "fuzzy file open
|
||||||
Plugin 'bling/vim-airline' "stylish info display
|
Plug 'bling/vim-airline' "stylish info display
|
||||||
Plugin 'bling/vim-bufferline' "stylish buffer display
|
Plug 'bling/vim-bufferline' "stylish buffer display
|
||||||
Plugin 'jeetsukumaran/vim-buffergator' "buffer management
|
Plug 'jeetsukumaran/vim-buffergator' "buffer management
|
||||||
Plugin 'mhinz/vim-signify' "version control system gutter info
|
Plug 'mhinz/vim-signify' "version control system gutter info
|
||||||
Plugin 'scrooloose/nerdtree' "file manager
|
Plug 'scrooloose/nerdtree' "file manager
|
||||||
Plugin 'tpope/vim-fugitive' "git awesomeness
|
Plug 'tpope/vim-fugitive' "git awesomeness
|
||||||
Plugin 'tpope/vim-surround' "quotes replacement made easy
|
Plug 'tpope/vim-surround' "quotes replacement made easy
|
||||||
Plugin 'directionalWindowResizer' "resize windows with simple hotkeys
|
Plug 'directionalWindowResizer' "resize windows with simple hotkeys
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plugin 'morhetz/gruvbox'
|
Plug 'morhetz/gruvbox'
|
||||||
Plugin 'MichaelMalick/vim-colors-bluedrake'
|
Plug 'MichaelMalick/vim-colors-bluedrake'
|
||||||
Plugin 'romainl/Apprentice'
|
Plug 'romainl/Apprentice'
|
||||||
Plugin 'vdrandom/forked-solarized.vim'
|
Plug 'vdrandom/forked-solarized.vim'
|
||||||
|
|
||||||
" syntax highlight plugins
|
" syntax highlight plugins
|
||||||
Plugin 'puppetlabs/puppet-syntax-vim'
|
Plug 'puppetlabs/puppet-syntax-vim'
|
||||||
Plugin 'nagios-syntax'
|
Plug 'nagios-syntax'
|
||||||
silent! call vundle#end()
|
call plug#end()
|
||||||
|
|
||||||
" easymotion options
|
" easymotion options
|
||||||
let g:EasyMotion_do_mapping=0
|
let g:EasyMotion_do_mapping=0
|
||||||
|
|
Loading…
Reference in a new issue