contrib: Teach vim to treat Vagrantfile as ruby

Install into $HOME/.vim/plugin/vagrantfile.vim

Signed-off-by: Brandon Philips <brandon@ifup.org>
This commit is contained in:
Brandon Philips 2011-01-01 10:17:22 -08:00 committed by Mitchell Hashimoto
parent 6a51e424db
commit b6a6183d45
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
" Teach vim to syntax highlight Vagrantfile as ruby
"
" Install: $HOME/.vim/plugin/vagrant.vim
" Author: Brandon Philips <brandon@ifup.org>
augroup vagrant
au!
au BufRead,BufNewFile Vagrantfile set filetype=ruby
augroup END