Install into $HOME/.vim/plugin/vagrantfile.vim Signed-off-by: Brandon Philips <brandon@ifup.org>
11 lines
228 B
VimL
11 lines
228 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
|
|
|