vim: Use EN instead of EN_US dict for spell check

I do not care about color/colour etc.
This commit is contained in:
2020-10-10 00:01:19 +02:00
parent 72159411b9
commit 027204615b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
" Shorter lines. Subject should be max 50 and body max 72 " Shorter lines. Subject should be max 50 and body max 72
setlocal colorcolumn=50,72 setlocal colorcolumn=50,72
" Spell checking always enabled " Spell checking always enabled
setlocal spell spelllang=en_us setlocal spell spelllang=en

View File

@@ -28,7 +28,7 @@ set undofile
" Update every 300ms for better experience with plugins like gitgutter and coc " Update every 300ms for better experience with plugins like gitgutter and coc
set updatetime=300 set updatetime=300
" Check for spelling in comments and strings " Check for spelling in comments and strings
set spell spelllang=en_us set spell spelllang=en
" Show the effect of a command while typing (substitute) " Show the effect of a command while typing (substitute)
if (has('nvim')) if (has('nvim'))
set inccommand=nosplit set inccommand=nosplit