Files
dotfiles/.config/vim/ftplugin/gitcommit.vim
druckdev 6e3f5a96b3 vim: Disable gutentags when editing git-commits
Disable gutentags as it seems to regenerate the entire tags file when
editing git-commits, leading to a delay when exiting and a message from
git:
"Waiting for your editor to close the file..."
2021-06-30 12:35:57 +02:00

10 lines
293 B
VimL

" Shorter lines. Subject should be max 50 and body max 72
setlocal colorcolumn=50,72
setlocal textwidth=72
" Spell checking always enabled
setlocal spell spelllang=en
" Disable gutentags as it seems to regenerate the entire tags file when editing
" git-commits...
let g:gutentags_enabled = 0