add aliases for vagrant commands frequently needed

the aliases follow a scheme, similar to the aliases of the git plugin
see https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh
This commit is contained in:
pogopaule 2014-09-25 22:37:04 +02:00
commit e734cc8a66

View file

@ -0,0 +1,11 @@
alias vu='vagrant up'
alias vh='vagrant halt'
alias vst='vagrant status'
alias vss='vagrant ssh'
alias vd='vagrant destroy'
alias vdf='vagrant destroy --force'
alias vbl='vagrant box list'
alias vbr='vagrant box remove'
alias vbu='vagrant box update'