Fix django highlighting, fixes #553

This commit is contained in:
Adam Stankiewicz
2020-09-24 10:50:19 +02:00
parent 6b4da27538
commit e2bbed8acc
28 changed files with 1080 additions and 886 deletions

16
indent/htmldjango.vim Normal file
View File

@@ -0,0 +1,16 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'htmldjango') == -1
" Vim indent file
" Language: Django HTML template
" Maintainer: Dave Hodder <dmh@dmh.org.uk>
" Last Change: 2007 Jan 25
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
" Use HTML formatting rules.
runtime! indent/html.vim
endif