dotfiles/nvim/lib/languages/json.vim

10 lines
208 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')
let g:coc_filetypes += ['json']