diff --git a/vim/.vimrc b/vim/.vimrc index b3df6ea..c2486e6 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -176,3 +176,7 @@ if exists('+termguicolors') let &t_8b = "\[48;2;%lu;%lu;%lum" set termguicolors endif + +" Remove conceal from Markdown when Insert mode is set +autocmd InsertEnter *.{markdown,md} set conceallevel=0 +autocmd InsertLeave *.{markdown,md} set conceallevel=2