vim: disable concealment for json files

This commit is contained in:
Fernando Schauenburg 2021-07-23 19:37:52 +02:00
parent 4a5fc4d54b
commit 6a7a82e87b

View file

@ -76,8 +76,9 @@ call plug#begin('$XDG_DATA_HOME/nvim/plugged')
Plug 'altercation/vim-colors-solarized' Plug 'altercation/vim-colors-solarized'
Plug 'bronson/vim-trailing-whitespace' Plug 'bronson/vim-trailing-whitespace'
Plug 'elzr/vim-json' Plug 'elzr/vim-json'
" Make numbers and booleans stand out, important because of the " Disable quote concealling.
" concealment used by vim-json. let g:vim_json_syntax_conceal = 0
" Make numbers and booleans stand out.
highlight link jsonBraces Text highlight link jsonBraces Text
highlight link jsonNumber Identifier highlight link jsonNumber Identifier
highlight link jsonBoolean Identifier highlight link jsonBoolean Identifier