nim.vim/ftplugin/nimrod.vim
2011-08-26 15:48:16 +03:00

16 lines
243 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
let &cpo = s:cpo_save
unlet s:cpo_save