diff --git a/.config/vim/vimrc.d/20-plugins.vim b/.config/vim/vimrc.d/20-plugins.vim index 62ffb14..7ebaa18 100644 --- a/.config/vim/vimrc.d/20-plugins.vim +++ b/.config/vim/vimrc.d/20-plugins.vim @@ -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