1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-31 15:06:43 +02:00
vim/runtime/indent/lisp.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
349 B
VimL
Raw Normal View History

2005-03-28 20:58:01 +00:00
" Vim indent file
" Language: Lisp
2022-08-08 15:42:38 +01:00
" Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
" URL: http://sites.google.com/site/khorser/opensource/vim
2012-01-10 14:55:01 +01:00
" Last Change: 2012 Jan 10
2005-03-28 20:58:01 +00:00
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
2005-05-19 21:08:39 +00:00
setlocal ai nosi
2005-03-28 20:58:01 +00:00
2005-05-19 21:08:39 +00:00
let b:undo_indent = "setl ai< si<"