Sincea98457e66b("vim:autocmd: Adjust colorcolumn with &textwidth") or correctly sinefc0969abba("vim: Drop textwidth autocmd for native way") it is not necessary to add the `textwidth` manually to `colorcolumn`. The colorcolumns are now also placed *behind* textwidth.
10 lines
291 B
VimL
10 lines
291 B
VimL
" Shorter lines. Subject should be max 50 and body max 72
|
|
setlocal colorcolumn+=51
|
|
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
|