2017-09-12 23:00:42 -07:00
|
|
|
" 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
|
2018-12-18 15:33:25 -08:00
|
|
|
setlocal iskeyword+=$
|
2018-05-17 20:59:30 -07:00
|
|
|
setlocal cpoptions+=M
|
2018-07-27 13:15:26 -07:00
|
|
|
setlocal foldmethod=indent
|
2019-01-01 17:22:39 -08:00
|
|
|
setlocal formatprg=nomsu\ -t\ format\ -q\ -
|
2018-12-18 18:07:27 -08:00
|
|
|
setlocal expandtab
|
|
|
|
setlocal tabstop=4
|
|
|
|
setlocal shiftwidth=0
|
2021-02-07 19:19:46 -08:00
|
|
|
setlocal commentstring=//\ %s
|
2018-07-27 13:20:09 -07:00
|
|
|
normal zR
|
2017-09-12 23:00:42 -07:00
|
|
|
|
2018-07-27 13:47:29 -07:00
|
|
|
command! NomsuHideTests :g/^\s*test:$/exe "normal! jzc"
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setlocal formatoptions< iskeyword< cpoptions< foldmethod<"
|