mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
Add TODO highlighting, disable text-wrapping, add "define-library" to lispwords on CHICKEN. Update MAINTAINERS. closes: #15063 Signed-off-by: Evan Hanson <evhan@foldling.org> Signed-off-by: Christian Brabandt <cb@256bit.org>
15 lines
479 B
VimL
15 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
|