aboutsummaryrefslogtreecommitdiffstats
path: root/vim/vimrc
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-18 16:32:36 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-18 16:32:36 +0000
commit69b3c6b91c039cfab9abee56788b442a6a814e9f (patch)
treeba854efa05f06feab62129ad69d7e68f7cf48fbd /vim/vimrc
parent16e468463a2b0684e2f58f9e6af1468ff884d6e0 (diff)
Fixes markdown syntax highlighting
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 3b4aa55..0a4290e 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -385,6 +385,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
" }}}