blob: f6b1e06d3c8f07548bbb837d58445103fdd4e8b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|