chezmoi init
This commit is contained in:
commit
530d6d7195
1176 changed files with 111325 additions and 0 deletions
19
dot_oh-my-zsh/plugins/helm/README.md
Normal file
19
dot_oh-my-zsh/plugins/helm/README.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Helm plugin
|
||||
|
||||
This plugin adds completion and aliases for [Helm](https://helm.sh/), the Kubernetes package manager.
|
||||
|
||||
To use it, add `helm` to the plugins array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... helm)
|
||||
```
|
||||
|
||||
## Aliases
|
||||
|
||||
| Alias | Full command |
|
||||
| ----- | -------------- |
|
||||
| h | helm |
|
||||
| hin | helm install |
|
||||
| hun | helm uninstall |
|
||||
| hse | helm search |
|
||||
| hup | helm upgrade |
|
19
dot_oh-my-zsh/plugins/helm/helm.plugin.zsh
Normal file
19
dot_oh-my-zsh/plugins/helm/helm.plugin.zsh
Normal file
|
@ -0,0 +1,19 @@
|
|||
if (( ! $+commands[helm] )); then
|
||||
return
|
||||
fi
|
||||
|
||||
# If the completion file does not exist, generate it and then source it
|
||||
# Otherwise, source it and regenerate in the background
|
||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
||||
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
|
||||
source "$ZSH_CACHE_DIR/completions/_helm"
|
||||
else
|
||||
source "$ZSH_CACHE_DIR/completions/_helm"
|
||||
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
|
||||
fi
|
||||
|
||||
alias h='helm'
|
||||
alias hin='helm install'
|
||||
alias hun='helm uninstall'
|
||||
alias hse='helm search'
|
||||
alias hup='helm upgrade'
|
Loading…
Add table
Add a link
Reference in a new issue