Update zsh configuration

This commit is contained in:
Rob Watson 2022-04-17 16:55:01 +02:00
parent a80d384ae8
commit a50eb88b88
2 changed files with 6 additions and 1 deletions

3
zshenv
View File

@ -31,6 +31,9 @@ export PGUSER=postgres
export BROWSER=none
export FAST_REFRESH=false
# k8s
export KUBECONFIG=$HOME/.kube/config:$HOME/.kube/config-do
# See `installdotfiles`:
if [ -f "$ZDOTDIR/.zshsecrets" ]; then
source "$ZDOTDIR/.zshsecrets"

4
zshrc
View File

@ -3,7 +3,7 @@
setopt hist_find_no_dups
setopt extended_history
setopt inc_append_history
setopt share_history
setopt auto_pushd
setopt pushd_ignore_dups
setopt pushd_silent
@ -76,8 +76,10 @@ alias gp="git push"
alias gst="git status"
alias gt="go test"
alias gta="go test ./..."
alias h="helm"
alias ji="jira -b"
alias k="kubectl"
alias ksc='kubectl config use-context $(kubectl config get-contexts -o name | fzf)'
alias k9="kill -9"
alias ll="exa -l --group-directories-first --git"
alias ls="exa --color=auto"