mirror of
https://github.com/neovim/neovim.git
synced 2026-01-03 01:46:31 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
19 lines
381 B
VimL
19 lines
381 B
VimL
" Vim syntax file
|
|
" Language: Angular HTML template
|
|
" Maintainer: Dennis van den Berg <dennis@vdberg.dev> (invalid)
|
|
" Last Change: 2024 Aug 22
|
|
|
|
" quit when a syntax file was already loaded
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
if !exists("main_syntax")
|
|
let main_syntax = 'html'
|
|
endif
|
|
|
|
runtime! syntax/html.vim
|
|
unlet b:current_syntax
|
|
|
|
let b:current_syntax = "htmlangular"
|