add gutentags plugin

This commit is contained in:
Thomas Ruoff
2016-08-30 08:31:32 +02:00
parent 42746e9421
commit 0b988791e8

10
vimrc
View File

@@ -25,6 +25,8 @@ Plug 'Valloric/YouCompleteMe', { 'do': './install.sh --tern-completer' }
Plug 'mbbill/undotree'
Plug 'ludovicchabant/vim-gutentags'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'SirVer/ultisnips'
@@ -270,6 +272,14 @@ set undoreload=10000
" Plugin Configuration
"
"" gutentags
let g:gutentags_file_list_command = {
\ 'markers': {
\ '.git': 'git ls-files',
\ '.hg': 'hg files',
\ },
\ }
"" ACK
if executable('ag')
let g:ackprg = 'ag --vimgrep'