forked from kovisoft/slimv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlisp.vim
30 lines (26 loc) · 845 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
27
28
29
" lisp.vim:
" Lisp indent plugin for Slimv
" Version: 0.9.14
" Last Change: 22 Jan 2021
" Maintainer: Tamas Kovacs <kovisoft at gmail dot com>
" License: This file is placed in the public domain.
" No warranty, express or implied.
" *** *** Use At-Your-Own-Risk! *** ***
"
" =====================================================================
"
" Load Once:
if exists("b:did_indent") || (exists("g:slimv_indent_disable") && g:slimv_indent_disable)
finish
endif
" Handle cases when lisp dialects explicitly use the lisp indent plugins
if &ft == "clojure" && exists("g:slimv_disable_clojure")
finish
endif
if &ft == "scheme" && exists("g:slimv_disable_scheme")
finish
endif
setlocal nolisp
setlocal autoindent
setlocal expandtab
setlocal indentexpr=SlimvIndent(v:lnum)