From 6a7a82e87b123b2f2d566c8e2d2b17e9bfcf64ac Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 23 Jul 2021 19:37:52 +0200 Subject: [PATCH] vim: disable concealment for json files --- files/init.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/files/init.vim b/files/init.vim index da8059a..ac002ce 100644 --- a/files/init.vim +++ b/files/init.vim @@ -76,8 +76,9 @@ call plug#begin('$XDG_DATA_HOME/nvim/plugged') Plug 'altercation/vim-colors-solarized' Plug 'bronson/vim-trailing-whitespace' Plug 'elzr/vim-json' - " Make numbers and booleans stand out, important because of the - " concealment used by vim-json. + " Disable quote concealling. + let g:vim_json_syntax_conceal = 0 + " Make numbers and booleans stand out. highlight link jsonBraces Text highlight link jsonNumber Identifier highlight link jsonBoolean Identifier