mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 c7a9404019
			
		
	
	c7a9404019
	
	
	
		
			
			closes: vim/vim#17848
becf1844e0
Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			525 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			525 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " Vim 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.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<'
 |