htmlangular.vim (371B)
1 " Vim syntax file 2 " Language: Angular HTML template 3 " Maintainer: Dennis van den Berg <dennis@vdberg.dev> 4 " Last Change: 2024 Aug 22 5 6 " quit when a syntax file was already loaded 7 if exists("b:current_syntax") 8 finish 9 endif 10 11 if !exists("main_syntax") 12 let main_syntax = 'html' 13 endif 14 15 runtime! syntax/html.vim 16 unlet b:current_syntax 17 18 let b:current_syntax = "htmlangular"