adding vim

This commit is contained in:
Hunter Haugen 2009-09-04 14:08:46 -07:00
parent 1b1e9fb734
commit 357b651f15
24 changed files with 14313 additions and 0 deletions

14
.vim/filetype.vim Normal file
View file

@ -0,0 +1,14 @@
" detect puppet filetypes
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufRead,BufNewFile *.pp setfiletype puppet
"au! BufNewFile,BufRead *.rhtml set syn=eruby
"au! BufNewFile,BufRead *.haml setfiletype haml
"au! BufNewFile,BufRead *.rhtml setfiletype rhtml
au! BufNewFile,BufRead *.rhtml setfiletype eruby
au! BufNewFile,BufRead *.s setfiletype asmx86
augroup END