I'm just beginning to get my way around vim. This is my doubt. How do i set vim's syntax highlighting to treat a file as a html file? I'm using ez template, so the file's extension is .ezt. But a lot of it is normal html code.
this only works on the currently loaded file...
pbr
2010-10-05 04:08:42
+5
A:
You can also put this into your .vimrc :
au BufLoad *.ezt set syntax=html
Benoit
2010-10-04 05:24:29