zsh: Add kube context to prompt
Alan Pearce alan@alanpearce.eu
Wed, 19 Dec 2018 11:47:21 +0100
1 files changed, 16 insertions(+), 0 deletions(-)
jump to
M zsh/.config/zsh/.zshrc → zsh/.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] ]]