mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
9 lines
208 B
VimL
9 lines
208 B
VimL
augroup vimrc-languages-json
|
|
autocmd!
|
|
autocmd FileType json syntax match Comment +\/\/.\+$+
|
|
augroup END
|
|
|
|
if !g:vim_ide | finish | endif
|
|
|
|
call coc#add_extension('coc-json')
|
|
let g:coc_filetypes += ['json']
|