mirror of https://git.xinb.cc/xinb/ohmyzsh.git
12 lines
376 B
Bash
12 lines
376 B
Bash
function tf_prompt_info() {
|
|
# dont show 'default' workspace in home dir
|
|
[[ "$PWD" != ~ ]] || return
|
|
# check if in terraform dir and file exists
|
|
[[ -d .terraform && -r .terraform/environment ]] || return
|
|
|
|
local workspace="$(< .terraform/environment)"
|
|
echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}"
|
|
}
|
|
|
|
alias tf='terraform'
|