mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
12 lines
318 B
Bash
12 lines
318 B
Bash
function tf_prompt_info() {
|
|
# dont show 'default' workspace in home dir
|
|
[[ "$PWD" == ~ ]] && return
|
|
# check if in terraform dir
|
|
if [[ -d .terraform && -r .terraform/environment ]]; then
|
|
workspace=$(cat .terraform/environment) || return
|
|
echo "[${workspace}]"
|
|
fi
|
|
}
|
|
|
|
alias tf='terraform'
|