summaryrefslogtreecommitdiffstats
path: root/runtime/indent/lisp.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-03-28 20:58:01 +0000
committerBram Moolenaar <Bram@vim.org>2005-03-28 20:58:01 +0000
commit582fd85b02e50b2aba025ff522c04a2293a45985 (patch)
tree3b721443d775ab6903fd8ff758f432046ee6b3cc /runtime/indent/lisp.vim
parent8b879e7fe8d02b59df4c39442c53b37ccd38b50c (diff)
updated for version 7.0065
Diffstat (limited to 'runtime/indent/lisp.vim')
-rw-r--r--runtime/indent/lisp.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/indent/lisp.vim b/runtime/indent/lisp.vim
new file mode 100644
index 0000000000..444fe103b6
--- /dev/null
+++ b/runtime/indent/lisp.vim
@@ -0,0 +1,15 @@
+" Vim indent file
+" Language: Lisp
+" Maintainer: noone
+" Last Change: 2005 Mar 28
+
+" Only load this indent file when no other was loaded.
+if exists("b:did_indent")
+ finish
+endif
+let b:did_indent = 1
+
+" Autoindent is the best we can do.
+setlocal ai
+
+let b:undo_indent = "setl ai<"