forked from urbie-mk2/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlisp.vim
26 lines (21 loc) · 769 Bytes
/
lisp.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" Vim filetype plugin
" Language: Lisp
" Maintainer: Sergey Khorev <[email protected]>
" URL: http://sites.google.com/site/khorser/opensource/vim
" Original author: Dorai Sitaram <[email protected]>
" Original URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html
" Last Change: Oct 23, 2013
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
finish
endif
" Don't load another plugin for this buffer
let b:did_ftplugin = 1
setl comments=:;
setl define=^\\s*(def\\k*
setl formatoptions-=t
setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94
setl lisp
setl commentstring=;%s
setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|#
let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp< commentstring<"