vim: disable concealment for json files
This commit is contained in:
parent
4a5fc4d54b
commit
6a7a82e87b
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue