From a305dabdf37c893bb17c141c435fcdbafab427f7 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 15 Jan 2018 16:01:57 +0100 Subject: [PATCH] Some default things to have ctags ignore, also fixes huge tags file in ~/.vim/ --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index d0b7003..9c9b81f 100644 --- a/.vimrc +++ b/.vimrc @@ -313,6 +313,7 @@ Plugin 'lepture/vim-jinja' Plugin 'ludovicchabant/vim-gutentags' " know when Gutentags is generating tags (prints 'TAGS' in status-line) set statusline+=%{gutentags#statusline()} +let g:gutentags_ctags_exclude = ["*.min.js", "*.min.css", "build", "vendor", ".git", "node_modules", "*.vim/bundle/*"] " All of your Plugins must be added before the following line call vundle#end() " required