fennel.vim 569 B

12345678910111213141516171819
  1. " Vim filetype plugin file
  2. " Language: Fennel
  3. " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com>
  4. " Last Update: 2022 Apr 20
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal commentstring=;%s
  10. setlocal comments=:;;,:;
  11. setlocal formatoptions-=t
  12. setlocal suffixesadd=.fnl
  13. setlocal lisp
  14. setlocal lispwords=accumulate,collect,do,doto,each,eval-compiler,fn,for,icollect,lambda,let,macro,macros,match,match-try,when,while,with-open
  15. let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'