mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-29 04:53:17 +02:00
12 lines
328 B
Bash
12 lines
328 B
Bash
function tf_prompt_info() {
|
|
# check if in terraform dir
|
|
if [ -d .terraform ]; then
|
|
workspace=$(terraform workspace show 2> /dev/null) || return
|
|
echo "[${workspace}]"
|
|
fi
|
|
}
|
|
|
|
if [ $commands[terraform] ]; then
|
|
autoload -U +X bashcompinit && bashcompinit
|
|
complete -o nospace -C terraform terraform
|
|
fi
|