diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-17 15:10:09 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-17 15:10:09 +0000 |
commit | f0568874f9470b92e39f7088ffc937a5f6b13e0d (patch) | |
tree | f558702f8db86c7810f462f5d50460525100ae76 /vim/vimrc | |
parent | 39be46917b141e425db041b470626e9eed0ce4e7 (diff) |
Fixed problem with autocmd which switched off markdown syntax highlighting
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 -" }}} +"}}} |