modules/zsh: more aliases. fix history. enable private go support

This commit is contained in:
fleaz 2025-04-02 21:27:01 +02:00
parent 9902b4715c
commit 93e9736e44

View file

@ -7,20 +7,26 @@
theme = "kolo"; theme = "kolo";
}; };
history = { history = {
share = false; # every terminal has it's own history share = false; # every terminal has it's own history durring runtime
extended = true; extended = true;
size = 10000; size = 10000;
}; };
shellAliases = { shellAliases = {
"k" = "kubectl"; "k" = "kubectl";
"kx" = "kubectx"; "kx" = "kubectx";
"kn" = "kubechn";
"kc" = "kubechc";
"dl" = "ls -lhtr --color=always ~/Downloads | tail -n 10"; # Show the 10 newest Downloads "dl" = "ls -lhtr --color=always ~/Downloads | tail -n 10"; # Show the 10 newest Downloads
"buzzer" = "ssh -i Nextcloud/Privat/id_door door@door.cccda.de buzzer"; "buzzer" = "ssh -i Nextcloud/Privat/id_door door@door.cccda.de buzzer";
"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
"dig" = "dig +short"; "dig" = "dig +short";
"cat" = "bat --theme=TwoDark --style=plain"; "cat" = "bat --theme=TwoDark --style=plain";
"watch" = "watch "; # https://unix.stackexchange.com/a/25329
"kge" = "kubectl get events --sort-by='.lastTimestamp'";
}; };
initExtra = '' initExtra = ''
setopt APPEND_HISTORY # Append history to global histfile on exit
autoload -U colors && colors autoload -U colors && colors
function is_ssh(){ function is_ssh(){
@ -28,10 +34,19 @@
echo %{$fg[red]%}SSH-Session on $(hostname -s)%{$reset_color%} echo %{$fg[red]%}SSH-Session on $(hostname -s)%{$reset_color%}
fi fi
} }
RPS1='$(is_ssh) $(kubectx_prompt_info)' function get_k8s_info(){
kubectl config get-contexts| grep "*" | awk '{print $3"/"$5}'
}
RPS1='$(is_ssh) $(get_k8s_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)
source ~/repos/kubech/kubech
export GOPRIVATE=gitlab.com
export GOAUTH=netrc
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"
''; '';
}; };