modules/zsh: more aliases. fix history. enable private go support
This commit is contained in:
parent
9902b4715c
commit
93e9736e44
1 changed files with 17 additions and 2 deletions
|
@ -7,20 +7,26 @@
|
|||
theme = "kolo";
|
||||
};
|
||||
history = {
|
||||
share = false; # every terminal has it's own history
|
||||
share = false; # every terminal has it's own history durring runtime
|
||||
extended = true;
|
||||
size = 10000;
|
||||
};
|
||||
shellAliases = {
|
||||
"k" = "kubectl";
|
||||
"kx" = "kubectx";
|
||||
"kn" = "kubechn";
|
||||
"kc" = "kubechc";
|
||||
"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";
|
||||
"beep" = "paplay /usr/share/sounds/freedesktop/stereo/complete.oga"; # play "ding" for long running jobs
|
||||
"dig" = "dig +short";
|
||||
"cat" = "bat --theme=TwoDark --style=plain";
|
||||
"watch" = "watch "; # https://unix.stackexchange.com/a/25329
|
||||
"kge" = "kubectl get events --sort-by='.lastTimestamp'";
|
||||
};
|
||||
initExtra = ''
|
||||
setopt APPEND_HISTORY # Append history to global histfile on exit
|
||||
|
||||
autoload -U colors && colors
|
||||
|
||||
function is_ssh(){
|
||||
|
@ -28,10 +34,19 @@
|
|||
echo %{$fg[red]%}SSH-Session on $(hostname -s)%{$reset_color%}
|
||||
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 PATH="$PATH:$HOME/.krew/bin:$HOME/bin:$HOME/go/bin";
|
||||
source <(kubectl completion zsh)
|
||||
source ~/repos/kubech/kubech
|
||||
|
||||
export GOPRIVATE=gitlab.com
|
||||
export GOAUTH=netrc
|
||||
|
||||
eval "$(direnv hook zsh)"
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue