mu/arc/vimrc.vim
Kartik K. Agaram b96af395b9 1276 - make C++ version the default
I've tried to update the Readme, but there are at least a couple of issues.
2015-05-05 21:17:24 -07:00

9 lines
270 B
VimL

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()