summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-17 15:10:09 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-17 15:10:09 +0000
commitf0568874f9470b92e39f7088ffc937a5f6b13e0d (patch)
treef558702f8db86c7810f462f5d50460525100ae76 /vim/vimrc
parent39be46917b141e425db041b470626e9eed0ce4e7 (diff)
Fixed problem with autocmd which switched off markdown syntax highlighting
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 3026729..62974f8 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -384,6 +384,6 @@ nnoremap <leader><C-f> :GitFZF<CR>
" from - https://dmerej.info/blog/post/syntax-highlighting-is-useless/
augroup textfiles
autocmd!
- autocmd filetype markdown :setlocal spell spelllang=en_gb | syntax clear
+ autocmd filetype markdown setlocal spell spelllang=en
augroup end
-" }}}
+"}}}