1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

feat(helmfile): introduce helmfile plugin

This commit is contained in:
Florian Rey
2024-10-13 17:58:02 +02:00
parent 7bbebcd520
commit bae6eefd69
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Completion
if (( ! $+commands[helmfile] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `helmfile`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helmfile" ]]; then
typeset -g -A _comps
autoload -Uz _helmfile
_comps[helmfile]=_helmfile
fi
helmfile completion zsh >| "$ZSH_CACHE_DIR/completions/_helmfile" &|
# Aliases
alias hf='helmfile'
alias hfi='helmfile --interactive'