neovim/runtime/indent/typst.vim
Christian Clason a0fd51c1e2 vim-patch:1cc4cae: runtime(typst): Add typst runtime files
closes: vim/vim#15234

1cc4cae961

Co-authored-by: Gregory Anders <greg@gpanders.com>
2024-07-16 09:43:57 +02:00

19 lines
404 B
VimL

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