Add jinja language support, closes #92

This commit is contained in:
Adam Stankiewicz
2015-12-06 11:39:05 +01:00
parent 5658b62b7a
commit 0dc7696c89
5 changed files with 173 additions and 0 deletions

16
indent/jinja.vim Normal file
View File

@@ -0,0 +1,16 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jinja') == -1
" Vim indent file
" Language: Jinja HTML template
" Maintainer: Evan Hammer <evan@evanhammer.com>
" Last Change: 2013 Jan 26
" 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