chezmoi init
This commit is contained in:
commit
530d6d7195
1176 changed files with 111325 additions and 0 deletions
13
dot_oh-my-zsh/plugins/oc/README.md
Normal file
13
dot_oh-my-zsh/plugins/oc/README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# OC - OpenShift CLI
|
||||
|
||||
This plugin provides autocompletion for [OC](https://docs.openshift.com/container-platform/latest/cli_reference/openshift_cli/getting-started-cli.html) commands, building, managing and updating operations.
|
||||
|
||||
To use it, add `oc` to the plugins array of your zshrc file:
|
||||
|
||||
```bash
|
||||
plugins=(... oc)
|
||||
```
|
||||
|
||||
## Contributors
|
||||
|
||||
+ [kevinkirkup](https://github.com/kevinkirkup) - Plugin Author
|
8
dot_oh-my-zsh/plugins/oc/oc.plugin.zsh
Normal file
8
dot_oh-my-zsh/plugins/oc/oc.plugin.zsh
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Autocompletion for oc, the command line interface for OpenShift
|
||||
#
|
||||
# Author: https://github.com/kevinkirkup
|
||||
|
||||
if [ $commands[oc] ]; then
|
||||
source <(oc completion zsh)
|
||||
compdef _oc oc
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue