mirror of
				https://github.com/vim/vim.git
				synced 2025-10-31 09:57:14 -04:00 
			
		
		
		
	closes: #16192 Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com> Signed-off-by: Gregory Anders <greg@gpanders.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
		
			
				
	
	
		
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " Vim indent file
 | |
| " Language:    Typst
 | |
| " Previous Maintainer:  Gregory Anders
 | |
| " Maintainer:  Luca Saccarola <github.e41mv@aleeas.com>
 | |
| " Last Change: 2024 Dec 09
 | |
| " 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<'
 |