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