From d4a5edab1a83bc8a8f6d3cffcb1e4f34d923b5a0 Mon Sep 17 00:00:00 2001 From: druckdev Date: Thu, 1 Jul 2021 13:23:23 +0200 Subject: [PATCH] vim: Disable gutentags when editing git-rebase I do not want the tags file to generate when doing simple git operations that will not modify the project in itself. --- .config/vim/ftplugin/gitrebase.vim | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .config/vim/ftplugin/gitrebase.vim diff --git a/.config/vim/ftplugin/gitrebase.vim b/.config/vim/ftplugin/gitrebase.vim new file mode 100644 index 0000000..f9bbdf6 --- /dev/null +++ b/.config/vim/ftplugin/gitrebase.vim @@ -0,0 +1,3 @@ +" Disable gutentags as it seems to regenerate the entire tags file when editing +" git-rebase... +let g:gutentags_enabled = 0