Files
dotfiles/zsh/kubernetes.zsh
Jim Myhrberg 80c77c8c2b Refactor shell setup into ~/.zshenv and ~/.zshrc files
It was time to split the environment related stuff out to ~/.zshenv,
leaving my ~/.zshrc file specifically for setup of interactive shells.
2020-02-22 14:27:19 +00:00

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