home/zsh: Added indicator if we are in a SSH session
This commit is contained in:
parent
69eae84585
commit
d36f1fd26a
|
@ -18,6 +18,14 @@
|
||||||
"beep" = "paplay /usr/share/sounds/freedesktop/stereo/complete.oga"; # play "ding" for long running jobs
|
"beep" = "paplay /usr/share/sounds/freedesktop/stereo/complete.oga"; # play "ding" for long running jobs
|
||||||
};
|
};
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
|
autoload -U colors && colors
|
||||||
|
|
||||||
|
function is_ssh(){
|
||||||
|
if [ ! -z $SSH_CLIENT ]; then
|
||||||
|
echo %{$fg[red]%}SSH-Session on $(hostname -s)%{$reset_color%}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
RPS1='$(is_ssh) $(kubectx_prompt_info)'
|
||||||
export EDITOR="nvim";
|
export EDITOR="nvim";
|
||||||
export PATH="$PATH:$HOME/.krew/bin:$HOME/bin:$HOME/go/bin";
|
export PATH="$PATH:$HOME/.krew/bin:$HOME/bin:$HOME/go/bin";
|
||||||
source <(kubectl completion zsh)
|
source <(kubectl completion zsh)
|
||||||
|
|
Loading…
Reference in a new issue