mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Remove the vim-easytags config
This commit is contained in:
parent
0edca2bc27
commit
addc418d9b
1 changed files with 0 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
|||
let g:easytags_suppress_ctags_warning = 1
|
||||
|
||||
"set the temporary directory for ctags
|
||||
if isdirectory(glob("/tmp"))
|
||||
let $TMPDIR = '/tmp'
|
||||
endif
|
||||
|
||||
"put general tags in ~/.vim/tags
|
||||
if filereadable(glob("~/.vim/tags"))
|
||||
let g:easytags_file = '~/.vim/tags'
|
||||
endif
|
||||
|
||||
"put filetype-specific tags in ~/.vim/tags_by_filetype/
|
||||
if isdirectory(glob("~/.vim/tags_by_filetype"))
|
||||
let g:easytags_by_filetype = '~/.vim/tags_by_filetype'
|
||||
endif
|
||||
|
||||
"prevent automatically generating the tagfile and syntax highlighting tags (default: 0)
|
||||
if !exists("g:disableautotags")
|
||||
let g:disableautotags = 0
|
||||
endif
|
||||
|
||||
if (g:disableautotags == 1)
|
||||
let g:easytags_auto_update = 0
|
||||
let g:easytags_auto_highlight = 0
|
||||
else
|
||||
let g:easytags_auto_update = 1
|
||||
let g:easytags_auto_highlight = 1
|
||||
endif
|
||||
|
||||
"run asynchronously
|
||||
let g:easytags_async = 1
|
Loading…
Reference in a new issue