]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / minikube / minikube.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh
deleted file mode 100644 (file)
index e87abce..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-# Autocompletion for Minikube.
-#
-if (( $+commands[minikube] )); then
-    __MINIKUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minikube_completion"
-
-    if [[ ! -f $__MINIKUBE_COMPLETION_FILE ]]; then
-        minikube completion zsh >! $__MINIKUBE_COMPLETION_FILE
-    fi
-
-    [[ -f $__MINIKUBE_COMPLETION_FILE ]] && source $__MINIKUBE_COMPLETION_FILE
-
-    unset __MINIKUBE_COMPLETION_FILE
-fi