From bc9757916ed09763d96283ee62dbed58bd713a11 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 6 Oct 2020 18:54:19 +0200 Subject: Add all vim filetypes --- indent/lisp.vim | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 indent/lisp.vim (limited to 'indent/lisp.vim') diff --git a/indent/lisp.vim b/indent/lisp.vim new file mode 100644 index 00000000..13e0558a --- /dev/null +++ b/indent/lisp.vim @@ -0,0 +1,19 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'lisp') == -1 + +" Vim indent file +" Language: Lisp +" Maintainer: Sergey Khorev +" URL: http://sites.google.com/site/khorser/opensource/vim +" Last Change: 2012 Jan 10 + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif +let b:did_indent = 1 + +setlocal ai nosi + +let b:undo_indent = "setl ai< si<" + +endif -- cgit v1.2.3