From ddf0d247e2bc77106e21b6abeceaa971b8fb95eb Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 21 Aug 2014 02:27:36 -0400 Subject: [PATCH] Changed some formatting + set tagfile locations --- vim/config/plugins.vim | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/vim/config/plugins.vim b/vim/config/plugins.vim index f93e37f..b518d11 100644 --- a/vim/config/plugins.vim +++ b/vim/config/plugins.vim @@ -17,6 +17,9 @@ "load plugins in vim/bundle/ and vim/bundle.user/ execute pathogen#infect('bundle/{}', 'bundle.user/{}') + + "set the locations for easytags, tagbar and other plugins to look for tag files + set tags=./.tags;,~/.vim/tags "}}} "SYNTAX PLUGINS: {{{ @@ -25,11 +28,11 @@ "}}} "EASYTAGS: {{{ - let g:easytags_file = '~/.vim/tags' - let g:easytags_suppress_ctags_warning = 1 - let g:easytags_autorecurse = 1 - let g:easytags_resolve_links = 1 - let g:easytags_dynamic_files = 1 + let g:easytags_file='~/.vim/tags' + let g:easytags_suppress_ctags_warning=1 + let g:easytags_autorecurse=1 + let g:easytags_resolve_links=1 + let g:easytags_dynamic_files=1 "prevent automatically generating the tagfile and syntax highlighting tags (default: 0) if !exists("g:disableautotags")