Created
June 14, 2013 14:01
-
-
Save scarolan/5782025 to your computer and use it in GitHub Desktop.
Vim syntax highlighting for Vagrant. Drop this into $HOME/.vim/plugin/vagrant.vim to activate.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Teach vim to syntax highlight Vagrantfile as ruby | |
" | |
" Install: $HOME/.vim/plugin/vagrant.vim | |
" Author: Brandon Philips <[email protected]> | |
augroup vagrant | |
au! | |
au BufRead,BufNewFile Vagrantfile set filetype=ruby | |
augroup END |
Thanks!
Thanks, good stuff!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thks a lot!