mu/archive/0.vm.arc/vimrc.vim
Kartik Agaram 2a4088119c 5852
2020-01-01 17:04:37 -08:00

9 lines
270 B
VimL
Generated

syntax sync minlines=999
function! HighlightMuInArc()
set ft=mu
syntax keyword muHack begin | highlight link muHack CommentedCode
syntax match muHack "[()]" | highlight link muHack CommentedCode
endfunction
autocmd BufRead,BufNewFile *.mu call HighlightMuInArc()