Добавлены конфиги tmux и zsh
This commit is contained in:
9
zsh/plugins/terraform/terraform.plugin.zsh
Normal file
9
zsh/plugins/terraform/terraform.plugin.zsh
Normal file
@@ -0,0 +1,9 @@
|
||||
function tf_prompt_info() {
|
||||
# dont show 'default' workspace in home dir
|
||||
[[ "$PWD" == ~ ]] && return
|
||||
# check if in terraform dir
|
||||
if [ -d .terraform ]; then
|
||||
workspace=$(terraform workspace show 2> /dev/null) || return
|
||||
echo "[${workspace}]"
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user