tisp.vim

vim configuration for the tisp langauge
git clone git://edryd.org/tisp.vim
Log | Files | Refs

commit b4b32a119aa7af6ee3a8768463b68d299e1ebb09
parent f771f3507ef4a523be993d347f6068356eb17174
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Wed, 12 Jun 2019 15:50:27 -0700

Add indent support

Diffstat:
indent/tisp.vim | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/indent/tisp.vim b/indent/tisp.vim @@ -0,0 +1,11 @@ +" Vim filetype plugin +" Language: tisp +" Author: Ed van Bruggen <ed@edryd.org> +" URL: edryd.org/projects/tisp.html + +if exists("b:did_indent") + finish +endif +let b:did_indent = 1 + +runtime! indent/lisp.vim