Mir Templates
Jump to navigation
Jump to search
Templates: https://svn.indymedia.org.uk/
vim syntax highlighting
Add this to your ~/.vimrc to get HTML and CSS highlighting for the .template files:
if has("autocmd")
" mir templates
augroup module
autocmd BufRead,BufNewFile *.template set filetype=html
autocmd BufRead,BufNewFile stylesheet.*.template set filetype=css
augroup END
endif
syntax on