diff --git a/.config/shell/aliases/k8s b/.config/shell/aliases/k8s index b172248..8b9a23b 100644 --- a/.config/shell/aliases/k8s +++ b/.config/shell/aliases/k8s @@ -6,4 +6,5 @@ alias \ f='flux' \ h='helm' \ k='kubectl' \ + m='minikube' \ v='velero' diff --git a/.config/zsh/completion b/.config/zsh/completion index 7a69e03..f51c481 100644 --- a/.config/zsh/completion +++ b/.config/zsh/completion @@ -7,4 +7,5 @@ command -v gh >/dev/null && . <(gh completion -s zsh) && complete -F _gh command -v helm >/dev/null && . <(helm completion zsh) && complete -F _helm h command -v kubectl >/dev/null && . <(kubectl completion zsh) && complete -F __start_kubectl k command -v kubectl-ctx >/dev/null && complete -W "$(kubectl-ctx)" kubectl-ctx +command -v minikube >/dev/null && . <(minikube completion zsh) && complete -F __minikube_convert_bash_to_zsh m command -v velero >/dev/null && . <(velero completion zsh) && complete -F __start_velero v