mirror of
https://github.com/prurigro/darkcloud-vimconfig.git
synced 2024-11-22 06:44:09 -05:00
Changed some formatting + set tagfile locations
This commit is contained in:
parent
952ce1c879
commit
ddf0d247e2
1 changed files with 8 additions and 5 deletions
|
@ -17,6 +17,9 @@
|
||||||
|
|
||||||
"load plugins in vim/bundle/ and vim/bundle.user/
|
"load plugins in vim/bundle/ and vim/bundle.user/
|
||||||
execute pathogen#infect('bundle/{}', '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: {{{
|
"SYNTAX PLUGINS: {{{
|
||||||
|
@ -25,11 +28,11 @@
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
"EASYTAGS: {{{
|
"EASYTAGS: {{{
|
||||||
let g:easytags_file = '~/.vim/tags'
|
let g:easytags_file='~/.vim/tags'
|
||||||
let g:easytags_suppress_ctags_warning = 1
|
let g:easytags_suppress_ctags_warning=1
|
||||||
let g:easytags_autorecurse = 1
|
let g:easytags_autorecurse=1
|
||||||
let g:easytags_resolve_links = 1
|
let g:easytags_resolve_links=1
|
||||||
let g:easytags_dynamic_files = 1
|
let g:easytags_dynamic_files=1
|
||||||
|
|
||||||
"prevent automatically generating the tagfile and syntax highlighting tags (default: 0)
|
"prevent automatically generating the tagfile and syntax highlighting tags (default: 0)
|
||||||
if !exists("g:disableautotags")
|
if !exists("g:disableautotags")
|
||||||
|
|
Loading…
Reference in a new issue