From 526a37301a8a938554dacf830362b15ef2fae0e1 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Tue, 25 Nov 2025 17:11:14 +0100 Subject: [PATCH] vim:plugs:ctags: Don't index venv and __pycache__ --- .config/vim/vimrc.d/20-plugins.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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