mirror of
https://github.com/neovim/neovim.git
synced 2026-09-25 23:08:29 +00:00
Update runtime files https://github.com/vim/vim/commit/cfa8f9a3f285060152ebbdbf86fbc7aecf1dd756 skip syntax/vim.vim (needs 8.2.4770) skip doc/syntax.vim (needs several colorscheme patches) skip further rewrite of manual
13 lines
230 B
VimL
13 lines
230 B
VimL
" Vim syntax file
|
|
" Language: confini
|
|
|
|
" Quit if a syntax file was already loaded
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
" Use the cfg syntax for now, it's similar.
|
|
runtime! syntax/cfg.vim
|
|
|
|
let b:current_syntax = 'confini'
|