Enable some Markdown QoL features bundled with Vim

This commit is contained in:
Danielle McLean 2023-10-28 13:15:22 +11:00
parent 9f3fd5449d
commit 63ef047b16
Signed by: 00dani
GPG key ID: 52C059C3B22A753E

View file

@ -52,6 +52,9 @@ if has('patch-8.2.4325')
set wildoptions+=pum
endif
# This is a window-local setting but I like 2 by default. :)
set conceallevel=2
set tabstop=2 shiftwidth=2
if exists('+breakindent')
@ -85,6 +88,8 @@ g:vim_svelte_plugin_use_typescript = 1
g:LatexBox_Folding = 1
g:markdown_folding = 1
g:ale_set_balloons = 1
nmap <silent> <C-k> <Plug>(ale_previous_wrap)
nmap <silent> <C-j> <Plug>(ale_next_wrap)