diff options
author | Nick Shipp <nick@shipp.ninja> | 2017-05-07 09:04:01 -0400 |
---|---|---|
committer | Nick Shipp <nick@shipp.ninja> | 2017-05-07 09:04:01 -0400 |
commit | c012f55efda29f09179e921cf148d79deb57616e (patch) | |
tree | ff0ad37f22622d51194cab192a2aa4b0106d7ad0 /vim/bundle/slimv/syntax/lisp | |
parent | 4ca8f6608883d230131f8a9e8b6d6c091c516049 (diff) |
Much maturering of vim configs
Diffstat (limited to 'vim/bundle/slimv/syntax/lisp')
-rw-r--r-- | vim/bundle/slimv/syntax/lisp/slimv-syntax-lisp.vim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vim/bundle/slimv/syntax/lisp/slimv-syntax-lisp.vim b/vim/bundle/slimv/syntax/lisp/slimv-syntax-lisp.vim new file mode 100644 index 0000000..57a707b --- /dev/null +++ b/vim/bundle/slimv/syntax/lisp/slimv-syntax-lisp.vim @@ -0,0 +1,21 @@ +" slimv-syntax-lisp.vim: +" Lisp syntax plugin for Slimv +" Version: 0.9.11 +" Last Change: 22 Apr 2013 +" 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:current_syntax") || exists("g:slimv_disable_lisp") + finish +endif + +runtime syntax/**/lisp.vim + +" Change syntax for #\( and #\) to string so that paren matching ignores them +syn match lispString !#\\[\(\)]! + |