mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
9 lines
227 B
VimL
9 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
|