vim:plugs:ctags: Don't index venv and __pycache__
This commit is contained in:
@@ -26,10 +26,13 @@ endif
|
|||||||
" ctags
|
" ctags
|
||||||
if (executable('ctags'))
|
if (executable('ctags'))
|
||||||
packadd vim-gutentags
|
packadd vim-gutentags
|
||||||
|
" Don't index these folders
|
||||||
let g:gutentags_ctags_exclude = [
|
let g:gutentags_ctags_exclude = [
|
||||||
\ 'node_modules/*',
|
\ 'node_modules/*',
|
||||||
\ '.git/*',
|
\ '.git/*',
|
||||||
\ 'build/*'
|
\ 'build/*',
|
||||||
|
\ 'venv/*',
|
||||||
|
\ '__pycache__/*'
|
||||||
\]
|
\]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user