summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/svcat
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/oh-my-zsh/plugins/svcat')
-rw-r--r--zsh/oh-my-zsh/plugins/svcat/README.md9
-rw-r--r--zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh6
2 files changed, 0 insertions, 15 deletions
diff --git a/zsh/oh-my-zsh/plugins/svcat/README.md b/zsh/oh-my-zsh/plugins/svcat/README.md
deleted file mode 100644
index 0bc60b1..0000000
--- a/zsh/oh-my-zsh/plugins/svcat/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# svcat
-
-This plugin provides completion for the [Kubernetes service catalog cli](https://github.com/kubernetes-incubator/service-catalog).
-
-To use it, add `svcat` to the plugins array in your zshrc file.
-
-```
-plugins=(... svcat)
-```
diff --git a/zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh b/zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh
deleted file mode 100644
index f90e7d8..0000000
--- a/zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh
+++ /dev/null
@@ -1,6 +0,0 @@
-# Autocompletion for svcat.
-#
-
-if [ $commands[svcat] ]; then
- source <(svcat completion zsh)
-fi