Files

20 lines
594 B
Bash
Raw Permalink Normal View History

if (( ! $+commands[helm] )); then
return
fi
2022-01-17 12:45:59 +01:00
# 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
2022-01-17 12:45:59 +01:00
source "$ZSH_CACHE_DIR/completions/_helm"
else
source "$ZSH_CACHE_DIR/completions/_helm"
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
2017-11-06 22:49:27 +08:00
fi
2022-12-02 16:19:00 +03:30
alias h='helm'
alias hin='helm install'
alias hun='helm uninstall'
2022-12-02 16:19:00 +03:30
alias hse='helm search'
alias hup='helm upgrade'