blob: 93cf3667265adf43a082033a161037e9657ac31c [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>
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01004" Last Update: 2023 Jun 9
Bram Moolenaarce001a32022-04-27 15:25:03 +01005
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
Bram Moolenaar10e8ff92023-06-10 21:40:39 +010016setlocal 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
Bram Moolenaarce001a32022-04-27 15:25:03 +010017
18let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'