From fe4e7cd307ccc5c93b747a904a541ef60045e186 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Mon, 27 Jan 2020 11:50:35 +0200 Subject: [PATCH] [nvim] disable markdown conceal --- nvim/plugin/editing.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index 590a550..1450e38 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -175,6 +175,7 @@ set commentstring=//%s nmap ga (LiveEasyAlign) " }}} + " language-specific settings {{{ let g:rust_recommended_style = 0 @@ -183,4 +184,7 @@ set commentstring=//%s let g:haskell_conceal_enumerations = 0 let g:haskell_multiline_strings = 1 + let g:vim_markdown_conceal = 0 + let g:vim_markdown_conceal_code_blocks = 0 + " }}}