mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
f24dd5481b
related: vim/vim#15190
a3a14d5469
Co-authored-by: Christian Brabandt <cb@256bit.org>
13 lines
298 B
VimL
13 lines
298 B
VimL
" Vim filetype plugin file
|
|
" Language: Angular HTML Template
|
|
" Maintainer: Dennis van den Berg <dennis@vdberg.dev>
|
|
" Last Change: 2024 Jul 9
|
|
|
|
" Only use this filetype plugin when no other was loaded.
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
" source the HTML ftplugin
|
|
runtime! ftplugin/html.vim
|