summaryrefslogtreecommitdiff
path: root/mnv/runtime/indent/typst.mnv
blob: 7a9d8ae1ddde306659460c7faf18bb6a288646e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" MNV indent file
" Language:    Typst
" Previous Maintainer:  Gregory Anders
"                       Luca Saccarola <github.e41mv@aleeas.com>
" Maintainer:  This runtime file is looking for a new maintainer.
" Last Change: 2025 Aug 05
" Based on:    https://github.com/kaarmu/typst.mnv

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<'