blob: 6aaa04a53a18045ce23904936a0821e1ad510a7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
" Vim indent file
" Language: Typst
" Maintainer: Gregory Anders <greg@gpanders.com>
" Last Change: 2024-07-14
" Based on: https://github.com/kaarmu/typst.vim
if exists('b:did_indent')
finish
endif
let b:did_indent = 1
setlocal expandtab
setlocal softtabstop=2
setlocal shiftwidth=2
setlocal autoindent
setlocal indentexpr=typst#indentexpr()
let b:undo_indent = 'setl et< sts< sw< ai< inde<'
|