all repos — archive/dotfiles @ 958131271a6f82f1d6cf22cdbb6ad6742d34d4c8

Superseded by nixfiles

zsh: Add kube context to prompt
Alan Pearce alan@alanpearce.eu
Wed, 19 Dec 2018 11:47:21 +0100
commit

958131271a6f82f1d6cf22cdbb6ad6742d34d4c8

parent

bce46573aedafe5a484b5bf3d54dea1f18c53204

1 files changed, 16 insertions(+), 0 deletions(-)

jump to
M zsh/.config/zsh/.zshrczsh/.config/zsh/.zshrc
@@ -207,6 +207,22 @@ PROMPT="> " else
   AGKOZAK_PROMPT_DIRTRIM=0
 
+  check_kubectl_context () {
+    if [[ "$PWD" =~ /kubernetes ]]
+    then
+      kubectl_context=$(kubectl config current-context)
+      if [[ $kubectl_context =~ production ]]
+      then
+        prompt_context="%F{red}[${kubectl_context}]%f"
+      else
+        prompt_context="%F{yellow}[${kubectl_context}]%f"
+      fi
+    else
+      prompt_context=
+    fi
+  }
+  precmd_functions+=(check_kubectl_context)
+  AGKOZAK_CUSTOM_RPROMPT='${prompt_context}%(3V.%F{${AGKOZAK_COLORS_BRANCH_STATUS}%3v%f.)'
 fi
 
 if [[ -n $commands[fzf] ]]