Back to Ohmyzsh

vagrant-prompt

plugins/vagrant-prompt/README.md

latest1.7 KB
Original Source

vagrant-prompt

This plugin prompts the status of the Vagrant VMs. It supports single-host and multi-host configurations as well.

To use it, add vagrant-prompt to the plugins array in your zshrc file:

zsh
plugins=(... vagrant-prompt)

Alberto Re [email protected]

Usage

To display Vagrant info on your prompt add the vagrant_prompt_info to the $PROMPT or $RPROMPT variable in your theme. Example:

zsh
PROMPT="$PROMPT"' $(vagrant_prompt_info)'
# or
RPROMPT='$(vagrant_prompt_info)'

Customization

vagrant_prompt_info makes use of the following custom variables, which can be set in your .zshrc file:

zsh
ZSH_THEME_VAGRANT_PROMPT_PREFIX="%{$fg_bold[blue]%}["
ZSH_THEME_VAGRANT_PROMPT_SUFFIX="%{$fg_bold[blue]%}]%{$reset_color%} "
ZSH_THEME_VAGRANT_PROMPT_RUNNING="%{$fg_no_bold[green]%}●"
ZSH_THEME_VAGRANT_PROMPT_POWEROFF="%{$fg_no_bold[red]%}●"
ZSH_THEME_VAGRANT_PROMPT_SUSPENDED="%{$fg_no_bold[yellow]%}●"
ZSH_THEME_VAGRANT_PROMPT_NOT_CREATED="%{$fg_no_bold[white]%}○"

State to variable mapping

The plugin uses the output reported by vagrant status to print whichever symbol matches, according to the following table:

StateSymbol
runningZSH_THEME_VAGRANT_PROMPT_RUNNING
not runningZSH_THEME_VAGRANT_PROMPT_POWEROFF
poweroffZSH_THEME_VAGRANT_PROMPT_POWEROFF
pausedZSH_THEME_VAGRANT_PROMPT_SUSPENDED
savedZSH_THEME_VAGRANT_PROMPT_SUSPENDED
suspendedZSH_THEME_VAGRANT_PROMPT_SUSPENDED
not createdZSH_THEME_VAGRANT_PROMPT_NOT_CREATED