diff --git a/zshrc b/zshrc index 9fb49cc..7924103 100644 --- a/zshrc +++ b/zshrc @@ -676,6 +676,12 @@ if [[ $commands[k3s] ]]; then source <(k3s completion zsh); fi +# If minikube is present, load completions from it. +# This must be done after compinit was called +if [[ $commands[minikube] ]]; then + source <(minikube completion zsh); +fi + zmodload zsh/complist #---------------------------------- Addons ------------------------------------