mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 09:06:44 +00:00
It was time to split the environment related stuff out to ~/.zshenv, leaving my ~/.zshrc file specifically for setup of interactive shells.
12 lines
155 B
Bash
12 lines
155 B
Bash
#
|
|
# Kubernetes Related
|
|
#
|
|
|
|
alias kc="kubectl"
|
|
alias hl="helm"
|
|
alias mk="minikube"
|
|
|
|
if (( $+commands[kubectl] )); then
|
|
eval "$(kubectl completion zsh)"
|
|
fi
|