vim:plugs:ctags: Don't index venv and __pycache__

This commit is contained in:
2025-11-25 17:11:14 +01:00
parent 7dc9efc0e4
commit 526a37301a

View File

@@ -26,10 +26,13 @@ endif
" ctags
if (executable('ctags'))
packadd vim-gutentags
" Don't index these folders
let g:gutentags_ctags_exclude = [
\ 'node_modules/*',
\ '.git/*',
\ 'build/*'
\ 'build/*',
\ 'venv/*',
\ '__pycache__/*'
\]
endif