mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Add TODO highlighting, disable text-wrapping, add "define-library" to
lispwords on CHICKEN. Update MAINTAINERS.
closes: vim/vim#15063
17e0a1969d
Co-authored-by: Evan Hanson <evhan@foldling.org>
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			479 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			479 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim indent file
 | 
						|
" Language:            Scheme
 | 
						|
" Last Change:         2024 Jun 21
 | 
						|
" Maintainer:          Evan Hanson <evhan@foldling.org>
 | 
						|
" Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
 | 
						|
" Repository:          https://git.foldling.org/vim-scheme.git
 | 
						|
" URL:                 https://foldling.org/vim/indent/scheme.vim
 | 
						|
 | 
						|
" Only load this indent file when no other was loaded.
 | 
						|
if exists("b:did_indent")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
 | 
						|
" Use the Lisp indenting
 | 
						|
runtime! indent/lisp.vim
 |