Update zsh configuration
This commit is contained in:
parent
a80d384ae8
commit
a50eb88b88
3
zshenv
3
zshenv
|
@ -31,6 +31,9 @@ export PGUSER=postgres
|
||||||
export BROWSER=none
|
export BROWSER=none
|
||||||
export FAST_REFRESH=false
|
export FAST_REFRESH=false
|
||||||
|
|
||||||
|
# k8s
|
||||||
|
export KUBECONFIG=$HOME/.kube/config:$HOME/.kube/config-do
|
||||||
|
|
||||||
# See `installdotfiles`:
|
# See `installdotfiles`:
|
||||||
if [ -f "$ZDOTDIR/.zshsecrets" ]; then
|
if [ -f "$ZDOTDIR/.zshsecrets" ]; then
|
||||||
source "$ZDOTDIR/.zshsecrets"
|
source "$ZDOTDIR/.zshsecrets"
|
||||||
|
|
4
zshrc
4
zshrc
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
setopt hist_find_no_dups
|
setopt hist_find_no_dups
|
||||||
setopt extended_history
|
setopt extended_history
|
||||||
setopt inc_append_history
|
setopt share_history
|
||||||
setopt auto_pushd
|
setopt auto_pushd
|
||||||
setopt pushd_ignore_dups
|
setopt pushd_ignore_dups
|
||||||
setopt pushd_silent
|
setopt pushd_silent
|
||||||
|
@ -76,8 +76,10 @@ alias gp="git push"
|
||||||
alias gst="git status"
|
alias gst="git status"
|
||||||
alias gt="go test"
|
alias gt="go test"
|
||||||
alias gta="go test ./..."
|
alias gta="go test ./..."
|
||||||
|
alias h="helm"
|
||||||
alias ji="jira -b"
|
alias ji="jira -b"
|
||||||
alias k="kubectl"
|
alias k="kubectl"
|
||||||
|
alias ksc='kubectl config use-context $(kubectl config get-contexts -o name | fzf)'
|
||||||
alias k9="kill -9"
|
alias k9="kill -9"
|
||||||
alias ll="exa -l --group-directories-first --git"
|
alias ll="exa -l --group-directories-first --git"
|
||||||
alias ls="exa --color=auto"
|
alias ls="exa --color=auto"
|
||||||
|
|
Loading…
Reference in New Issue