]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / terraform / terraform.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh
deleted file mode 100644 (file)
index d9e39e6..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-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'
-alias tfa='terraform apply'
-alias tfd='terraform destroy'
-alias tff='terraform fmt'
-alias tfi='terraform init'
-alias tfo='terraform output'
-alias tfp='terraform plan'
-alias tfv='terraform validate'