mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 03:17:23 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
14 lines
341 B
VimL
14 lines
341 B
VimL
" Vim filetype plugin file
|
|
" Language: Django HTML template
|
|
" Maintainer: Dave Hodder <dmh@dmh.org.uk> (invalid)
|
|
" Last Change: 2007 Jan 25
|
|
|
|
" Only use this filetype plugin when no other was loaded.
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
" Use HTML and Django template ftplugins.
|
|
runtime! ftplugin/html.vim
|
|
runtime! ftplugin/django.vim
|