eevo.vim (614B)
1 " Vim filetype plugin 2 " Language: eevo 3 " Author: Ed van Bruggen <ed@edryd.org> 4 " URL: eevo.pub 5 6 if exists("b:did_ftplugin") 7 finish 8 endif 9 let b:did_ftplugin = 1 10 11 setl lisp 12 setl expandtab 13 setl comments=:; 14 setl commentstring=;\ %s 15 setl define=^\\s*(def\\k* 16 setl formatoptions-=t 17 setl iskeyword+=+,-,*,/,%,<,=,>,$,?,!,@-@,94 18 setl lispwords+=def,recur,switch,Func,Macro 19 setl foldmethod=expr 20 setl foldexpr=getline(v:lnum)=~'^;;;'?'>1':1 21 22 if exists('g:paredit_loaded') 23 call PareditInitBuffer() 24 endif 25 26 let b:undo_ftplugin = "setlocal lisp< comments< commentstring< define< formatoptions< iskeyword< lispwords<"