dotfiles/nvim/lib/languages/json.vim

10 lines
217 B
VimL
Raw Normal View History

augroup vimrc-languages-json
autocmd!
autocmd FileType json syntax match Comment +\/\/.\+$+
augroup END
2019-06-20 23:27:47 +00:00
if !g:vim_ide | finish | endif
call coc#add_extension('coc-json')
2019-11-09 20:00:23 +00:00
let g:coc_filetypes += ['json', 'json5']