summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vim/vimrc10
1 files changed, 4 insertions, 6 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 7d974e5..5159ecb 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -255,8 +255,6 @@ let test#vimterminal#term_position = "belowright"
" command! S :w !sudo tee %
nnoremap <Tab> %
-" spelling
-set spell spelllang=en_gb
" }}}
" FZF {{{
" This is the default extra key bindings
@@ -375,8 +373,8 @@ nnoremap <leader><C-f> :GitFZF<CR>
"}}}
" Turn spelling on for text files {{{
" from - https://dmerej.info/blog/post/syntax-highlighting-is-useless/
-" augroup textfiles
-" autocmd!
-" autocmd filetype markdown :setlocal spell spelllang=en | syntax clear
-" augroup end
+augroup textfiles
+ autocmd!
+ autocmd filetype markdown :setlocal spell spelllang=en_gb | syntax clear
+augroup end
" }}}