diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-07-17 11:27:01 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-07-17 11:36:26 +0300 |
commit | 2c135dd631019a251e073a0f4e86267cf12c50c0 (patch) | |
tree | a0bf016d43517a886a0e7096be60e133dd119fdd /config/p10k-classic.zsh | |
parent | 942c4cf640866d9655d00a2895548acee3ebf64a (diff) |
make terraform_version consistent with other *_version segments (#1487)
Diffstat (limited to 'config/p10k-classic.zsh')
-rw-r--r-- | config/p10k-classic.zsh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config/p10k-classic.zsh b/config/p10k-classic.zsh index 0407c354..592d8a7b 100644 --- a/config/p10k-classic.zsh +++ b/config/p10k-classic.zsh @@ -70,7 +70,7 @@ haskell_stack # haskell version from stack (https://haskellstack.org/) kubecontext # current kubernetes context (https://kubernetes.io/) terraform # terraform workspace (https://www.terraform.io) - terraform_version # It shows current active terraform version + # terraform_version # terraform version (https://www.terraform.io) aws # aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) aws_eb_env # aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) azure # azure account name (https://docs.microsoft.com/en-us/cli/azure) @@ -1205,8 +1205,11 @@ 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' + #############[ terraform_version: terraform version (https://www.terraform.io) ]############## + # Terraform version color. + typeset -g POWERLEVEL9K_TERRAFORM_VERSION_FOREGROUND=38 + # Custom icon. + # typeset -g POWERLEVEL9K_TERRAFORM_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' #############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]############# # Show kubecontext only when the the command you are typing invokes one of these tools. |