diff options
author | 2022-10-03 21:42:20 +0530 | |
---|---|---|
committer | 2022-10-03 21:42:20 +0530 | |
commit | af120ab348f2e1a5a39dec035ed9dcf84189a64e (patch) | |
tree | 2a3aadd7ce1b7b771dfe3fe7c983569726c8d7ed /zsh/oh-my-zsh/plugins/svcat | |
download | dotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.tar.gz dotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.tar.bz2 dotfiles-af120ab348f2e1a5a39dec035ed9dcf84189a64e.zip |
dotfiles
Diffstat (limited to 'zsh/oh-my-zsh/plugins/svcat')
-rw-r--r-- | zsh/oh-my-zsh/plugins/svcat/README.md | 9 | ||||
-rw-r--r-- | zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/zsh/oh-my-zsh/plugins/svcat/README.md b/zsh/oh-my-zsh/plugins/svcat/README.md new file mode 100644 index 0000000..0bc60b1 --- /dev/null +++ b/zsh/oh-my-zsh/plugins/svcat/README.md @@ -0,0 +1,9 @@ +# 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 new file mode 100644 index 0000000..f90e7d8 --- /dev/null +++ b/zsh/oh-my-zsh/plugins/svcat/svcat.plugin.zsh @@ -0,0 +1,6 @@ +# Autocompletion for svcat. +# + +if [ $commands[svcat] ]; then + source <(svcat completion zsh) +fi |