10 lines
227 B
VimL
10 lines
227 B
VimL
|
" 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
|