From addc418d9bb3bbbeed860319b87631d83173660c Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 15 Apr 2022 14:38:02 -0400 Subject: [PATCH] Remove the vim-easytags config --- vim/config/plugins/vim-easytags.vim | 32 ----------------------------- 1 file changed, 32 deletions(-) delete mode 100644 vim/config/plugins/vim-easytags.vim diff --git a/vim/config/plugins/vim-easytags.vim b/vim/config/plugins/vim-easytags.vim deleted file mode 100644 index 8f07e47..0000000 --- a/vim/config/plugins/vim-easytags.vim +++ /dev/null @@ -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