1
0

make config compatible with older vim

This commit is contained in:
valeth 2015-04-08 18:27:27 +02:00
parent 97f0753c74
commit c5b12fd794
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,5 @@
aug CursorLineColumn
au!
au VimEnter,WinEnter,BufWinEnter * setlocal cursorline cursorcolumn
"au VimEnter,WinEnter,BufWinEnter * setlocal cursorcolumn
"au VimEnter,WinEnter,BufWinEnter * setlocal colorcolumn=80
au WinLeave * setlocal nocursorline nocursorcolumn colorcolumn=0
au WinLeave * setlocal nocursorline nocursorcolumn
aug END

View File

@ -5,8 +5,12 @@ Plug 'scrooloose/nerdcommenter'
Plug 'scrooloose/syntastic'
Plug 'jiangmiao/auto-pairs'
Plug 'majutsushi/tagbar'
if version >= 704
Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
endif
Plug 'kien/ctrlp.vim'
Plug 'vim-scripts/gnupg'
"Plug 'tomasr/molokai'
@ -16,6 +20,9 @@ Plug 'junegunn/seoul256.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'scrooloose/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }
Plug 'vim-scripts/Gundo', { 'on': 'GundoToggle' }
if version >= 704
Plug 'Valloric/YouCompleteMe', { 'do': './install.sh --clang-completer --system-libclang' }
endif
call plug#end()