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..."
10 lines
293 B
VimL
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
|