From 0b988791e8a286a8996cedc83104f3850cdcb220 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Tue, 30 Aug 2016 08:31:32 +0200 Subject: [PATCH] add gutentags plugin --- vimrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/vimrc b/vimrc index 21cde2f..4d578da 100644 --- a/vimrc +++ b/vimrc @@ -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'