mirror of https://gitlab.com/dabruh/dotfiles.git
8 lines
381 B
Plaintext
8 lines
381 B
Plaintext
|
#!/usr/bin/zsh
|
||
|
|
||
|
# Auto-complete section
|
||
|
command -v flux >/dev/null && . <(flux completion zsh) && complete -F _flux f
|
||
|
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 velero >/dev/null && . <(velero completion zsh) && complete -F __start_velero v
|