Add racket support, #159

This commit is contained in:
Adam Stankiewicz
2017-05-17 11:46:19 +02:00
parent 7dd2e11698
commit d5b9c4ae84
7 changed files with 724 additions and 0 deletions

16
indent/racket.vim Normal file
View File

@@ -0,0 +1,16 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'racket') == -1
" Language: Racket
" Maintainer: Will Langstroth <will@langstroth.com>
" URL: http://github.com/wlangstroth/vim-racket
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
setlocal ai nosi
let b:undo_indent = "setl ai< si<"
endif