vim: add json comment highlighting

pull/6/head
bretello 2021-12-08 23:57:20 +01:00
parent 8236f71189
commit 81a84dacd2
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 5 additions and 0 deletions

View File

@ -61,6 +61,11 @@ autocmd FileType vue setlocal shiftwidth=2 softtabstop=2 expandtab
autocmd FileType go setlocal noexpandtab makeprg=go\ build
autocmd FileType rust set makeprg=cargo\ build
syntax match jsonComment "//.*"
syntax match jsonComment "\(/\*\)\|\(\*/\)"
hi def link jsonComment Comment
au BufRead dvc.yaml let b:ale_fix_on_save=0
au BufRead *.dvc let b:ale_fix_on_save=0
au BufRead *.dvc set filetype=yaml