mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-02-17 00:44:28 +01:00
![Maciej Lasyk](/assets/img/avatar_default.png)
Expanded Terraform plugin with function that can be used to show workspace name in the zsh prompt
7 lines
202 B
Bash
7 lines
202 B
Bash
function terraform_prompt_info() {
|
|
# check if in terraform dir
|
|
if [ -d .terraform ]; then
|
|
workspace=$(terraform workspace show 2> /dev/null) || return
|
|
echo "[${workspace}]"
|
|
fi
|
|
}
|