zshrc/zsh.d/50_kubernetes.zsh
2024-03-03 20:25:22 +01:00

14 lines
211 B
Bash

if command-exists "kubectl"; then
source <(kubectl completion zsh)
fi
if command-exists "k3s"; then
source <(k3s completion zsh)
fi
if command-exists "minikube"; then
source <(minikube completion zsh)
fi