Add g5ncli alias and completion

This commit is contained in:
dabruh 2024-04-03 11:31:06 +02:00
parent 17b6092236
commit 674d3f755d
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
alias \
cx="kubectl-ctx" \
f='flux' \
gn='g5ncli' \
h='helm' \
k='kubectl' \
m='minikube' \

View File

@ -4,6 +4,7 @@
autoload bashcompinit && bashcompinit
command -v flux >/dev/null && . <(flux completion zsh) && complete -F _flux f
command -v gh >/dev/null && . <(gh completion -s zsh) && complete -F _gh
command -v g5ncli >/dev/null && . <(g5ncli completion zsh) && complete -F _g5ncli gn
command -v helm >/dev/null && . <(helm completion zsh) && complete -F _helm h
command -v kubectl >/dev/null && . <(kubectl completion zsh) && complete -F __start_kubectl k
command -v kubectl-ctx >/dev/null && complete -W "$(kubectl-ctx)" kubectl-ctx