From dd31bbfd5cddd8dce1671ad9d17001597de62eef Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 23 Feb 2024 16:45:19 -0500 Subject: [PATCH] Don't conceal json syntax --- vim/config/after.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/config/after.vim b/vim/config/after.vim index 87e4274..f9e33de 100644 --- a/vim/config/after.vim +++ b/vim/config/after.vim @@ -35,6 +35,9 @@ autocmd FileChangedRO * nested set noreadonly "enable more accurate syntax synchronization autocmd BufEnter * :syntax sync fromstart + "don't conceal json syntax + let g:vim_json_syntax_conceal = 0 + "set given filenames to various filetypes autocmd BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setlocal ft=aspnet autocmd BufNewFile,BufRead *.gradle setlocal ft=groovy