summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/helm/README.md11
-rw-r--r--plugins/helm/helm.plugin.zsh5
2 files changed, 15 insertions, 1 deletions
diff --git a/plugins/helm/README.md b/plugins/helm/README.md
index 49844c78f..8be024bfb 100644
--- a/plugins/helm/README.md
+++ b/plugins/helm/README.md
@@ -1,9 +1,18 @@
# Helm plugin
-This plugin adds completion for [Helm](https://helm.sh/), the Kubernetes package manager.
+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 |
+| hse | helm search |
+| hup | helm upgrade |
diff --git a/plugins/helm/helm.plugin.zsh b/plugins/helm/helm.plugin.zsh
index 151c43d88..7fc05be98 100644
--- a/plugins/helm/helm.plugin.zsh
+++ b/plugins/helm/helm.plugin.zsh
@@ -11,3 +11,8 @@ 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 hse='helm search'
+alias hup='helm upgrade'