diff options
author | Alejandro Gandara <alex@alexgan.net> | 2021-07-15 02:44:37 +0300 |
---|---|---|
committer | Alejandro Gandara <alex@alexgan.net> | 2021-07-15 02:44:37 +0300 |
commit | 9f98915167b35bc045090c106b8249f6dadfaf01 (patch) | |
tree | 8d39fe243d9e7285a4022378424f5ca74c0e6176 /config/p10k-classic.zsh | |
parent | f717a91f55f4d5dfb89d8828dc5b36fcc45548c2 (diff) |
* Added new module for showing in prompt the active terraform version.
* Prompt shows, the terraform version in this format: Terraform v0.12.13 . If only if a valid terraform command is used, or an alias to it.
The use case: We have a need to constantly change between terraform versions depending on what project we are working on, it is easy to by mistake upgrade the wrong project to the latest terraform version. This is why the prompt is shown in red as soon as you type terraform, this is a good way to remind you to double check this is the terraform version you want to use.
Future improvements:
Detect current terraform version by checking the terraform workspace state version, and change the terraform color prompt from red to green if you're using the same version.
Diffstat (limited to 'config/p10k-classic.zsh')
-rw-r--r-- | config/p10k-classic.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/p10k-classic.zsh b/config/p10k-classic.zsh index 53dc0e66..0407c354 100644 --- a/config/p10k-classic.zsh +++ b/config/p10k-classic.zsh @@ -1205,6 +1205,9 @@ typeset -g POWERLEVEL9K_TERRAFORM_OTHER_FOREGROUND=38 # typeset -g POWERLEVEL9K_TERRAFORM_OTHER_VISUAL_IDENTIFIER_EXPANSION='⭐' + ################[ terraform_version: It shows active terraform version (https://www.terraform.io) ]################# + typeset -g POWERLEVEL9K_TERRAFORM_VERSION_SHOW_ON_COMMAND='terraform|tf' + #############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]############# # Show kubecontext only when the the command you are typing invokes one of these tools. # Tip: Remove the next line to always show kubecontext. |