]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/vagrant/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / vagrant / README.md
1 # Vagrant plugin
2
3 This plugin adds autocompletion for [Vagrant](https://www.vagrantup.com/) commands, task names, box names and built-in handy documentation.
4
5 To use it, add `vagrant` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... vagrant)
9 ```
10
11 ## Aliases
12
13 | Alias   | Command                      |
14 |---------|------------------------------|
15 | `vgi`   | `vagrant init`               |
16 | `vup`   | `vagrant up`                 |
17 | `vd`    | `vagrant destroy`            |
18 | `vdf`   | `vagrant destroy -f`         |
19 | `vssh`  | `vagrant ssh`                |
20 | `vsshc` | `vagrant ssh-config`         |
21 | `vrdp`  | `vagrant rdp`                |
22 | `vh`    | `vagrant halt`               |
23 | `vssp`  | `vagrant suspend`            |
24 | `vst`   | `vagrant status`             |
25 | `vre`   | `vagrant resume`             |
26 | `vgs`   | `vagrant global-status`      |
27 | `vpr`   | `vagrant provision`          |
28 | `vr`    | `vagrant reload`             |
29 | `vrp`   | `vagrant reload --provision` |
30 | `vp`    | `vagrant push`               |
31 | `vsh`   | `vagrant share`              |
32 | `vba`   | `vagrant box add`            |
33 | `vbr`   | `vagrant box remove`         |
34 | `vbl`   | `vagrant box list`           |
35 | `vbo`   | `vagrant box outdated`       |
36 | `vbu`   | `vagrant box update`         |
37 | `vpli`  | `vagrant plugin install`     |
38 | `vpll`  | `vagrant plugin list`        |
39 | `vplun` | `vagrant plugin uninstall`   |
40 | `vplu`  | `vagrant plugin update`      |