fennel.vim 687 B

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