Add version check for gutentags

This commit is contained in:
ViViDboarder 2016-05-20 16:17:33 -07:00
parent af75cd6000
commit 686c6d6547
1 changed files with 3 additions and 1 deletions

View File

@ -103,7 +103,9 @@ Plug 'majutsushi/tagbar'
nnoremap <silent> <F8> :TagbarToggle<CR>
let g:tagbar_autofocus = 1 " Autofocus tagbar
" }} tagbar
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
if (v:version > 703)
Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files
end
Plug 'tpope/vim-surround'
Plug 'tomtom/tcomment_vim' " , { 'on': ['TComment', 'TCommentBlock'] }
" tcomment_vim {{