blob: c4c3ffb3f1a87cfc4da4d9789974af700547bd85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufRead,BufNewFile *.cobra setfiletype cobra
au! BufRead,BufNewFile *.vala setfiletype vala
au! BufRead,BufNewFile *.tpl setfiletype npt
au! BufRead,BufNewFile *.mako setfiletype mako
au! BufRead,BufNewFile *.ML setfiletype sml
au! BufRead,BufNewFile /etc/lighttpd/*.conf,lighttpd.conf setfiletype lighttpd
augroup END
|