diff options
Diffstat (limited to 'vim/bundle/slimv/indent/scheme.vim')
| -rw-r--r-- | vim/bundle/slimv/indent/scheme.vim | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/vim/bundle/slimv/indent/scheme.vim b/vim/bundle/slimv/indent/scheme.vim new file mode 100644 index 0000000..90be432 --- /dev/null +++ b/vim/bundle/slimv/indent/scheme.vim @@ -0,0 +1,23 @@ +" scheme.vim: +"               Scheme indent plugin for Slimv +" Version:      0.9.5 +" Last Change:  21 Feb 2012 +" 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_disable_scheme") +   finish +endif + +let b:did_indent = 1 + +setlocal nolisp +setlocal autoindent +setlocal expandtab +setlocal indentexpr=SlimvIndent(v:lnum) + | 
