vim:plugins:ctags: Ignore node_modules/ and .git/

This commit is contained in:
2021-03-10 13:41:48 +01:00
parent abd26352d4
commit 3394cafca3

View File

@@ -10,3 +10,9 @@ if (has('patch-8.1.1719') || has('nvim'))
packadd! coc.nvim packadd! coc.nvim
source $XDG_CONFIG_HOME/vim/coc.nvim.vim source $XDG_CONFIG_HOME/vim/coc.nvim.vim
endif endif
" ctags
let g:gutentags_ctags_exclude = [
\ 'node_modules/*',
\ '.git/*'
\]