vim-nomsu/ftplugin/nomsu.vim
2018-11-15 19:59:28 -08:00

20 lines
456 B
VimL

" Language: Nomsu
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal formatoptions-=t
setlocal iskeyword+=%
setlocal cpoptions+=M
setlocal foldmethod=indent
setlocal formatprg=nomsu\ tools/autoformat.nom\ -
normal zR
command! NomsuHideTests :g/^\s*test:$/exe "normal! jzc"
let b:undo_ftplugin = "setlocal formatoptions< iskeyword< cpoptions< foldmethod<"