nim.vim/ftplugin/nimrod.vim
2011-08-28 01:54:33 +03:00

18 lines
260 B
VimL

if (exists("b:did_ftplugin"))
finish
endif
let b:did_ftplugin = 1
let s:cpo_save = &cpo
set cpo&vim
setlocal formatoptions-=t formatoptions+=croql
setlocal comments=:#
setlocal commentstring=#\ %s
compiler nimrod
let &cpo = s:cpo_save
unlet s:cpo_save