nvim: disable conceal for json
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Sijmen 2022-08-07 15:23:23 +02:00
parent e1a5b8c7db
commit 66982a46b2
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ vim.cmd [[
if has("autocmd") if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif endif
autocmd Filetype json
\ let g:indentLine_setConceal = 0 |
\ let g:vim_json_syntax_conceal = 0
]] ]]
g.mapleader = ' ' g.mapleader = ' '