mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-02-22 16:18:12 +01:00
7 lines
381 B
Bash
7 lines
381 B
Bash
#!/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
|