(23 lines)
1 " Language: Nomsu2 " Maintainer: Bruce Hill <bruce@bruce-hill.com>3 " License: WTFPL5 if exists("b:did_ftplugin")6 finish7 endif8 let b:did_ftplugin = 110 setlocal formatoptions-=t11 setlocal iskeyword+=$12 setlocal cpoptions+=M13 setlocal foldmethod=indent14 setlocal formatprg=nomsu\ -t\ format\ -q\ -15 setlocal expandtab16 setlocal tabstop=417 setlocal shiftwidth=018 setlocal commentstring=//\ %s19 normal zR21 command! NomsuHideTests :g/^\s*test:$/exe "normal! jzc"23 let b:undo_ftplugin = "setlocal formatoptions< iskeyword< cpoptions< foldmethod<"