Created
May 24, 2012 15:27
-
-
Save stephenvisser/2782235 to your computer and use it in GitHub Desktop.
A Vim script for indenting *.eco files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Eco templates will use html indenting | |
" Taken from https://github.com/juvenn/mustache.vim/blob/master/indent/mustache.vim | |
" 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment