Update vimrc for version detection of ycm and re
This commit is contained in:
parent
be6a5e6351
commit
89b2317497
1 changed files with 6 additions and 2 deletions
8
.vimrc
8
.vimrc
|
|
@ -42,7 +42,9 @@ autocmd!
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
" Use old regex engine to speed ruby syntax up
|
" Use old regex engine to speed ruby syntax up
|
||||||
set re=1
|
if v:version >= 703 && has("patch970")
|
||||||
|
set re=1
|
||||||
|
endif
|
||||||
|
|
||||||
" Enable a nice big viminfo file {{{2
|
" Enable a nice big viminfo file {{{2
|
||||||
set viminfo='1000,f1,:1000,/1000
|
set viminfo='1000,f1,:1000,/1000
|
||||||
|
|
@ -1164,7 +1166,9 @@ Bundle 'hunner/vim-puppet'
|
||||||
Bundle 'hunner/vim-plist'
|
Bundle 'hunner/vim-plist'
|
||||||
Bundle 'vim-coffee-script'
|
Bundle 'vim-coffee-script'
|
||||||
Bundle 'syntastic'
|
Bundle 'syntastic'
|
||||||
Bundle 'YouCompleteMe'
|
if v:version >= 703 && has("patch584")
|
||||||
|
Bundle 'YouCompleteMe'
|
||||||
|
endif
|
||||||
Bundle 'rking/ag'
|
Bundle 'rking/ag'
|
||||||
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue