mirror of https://gitlab.com/dabruh/dotfiles.git
Add Minikube alias and completion
This commit is contained in:
parent
b49aa0be3d
commit
e34b12a5eb
|
@ -6,4 +6,5 @@ alias \
|
|||
f='flux' \
|
||||
h='helm' \
|
||||
k='kubectl' \
|
||||
m='minikube' \
|
||||
v='velero'
|
||||
|
|
|
@ -7,4 +7,5 @@ command -v gh >/dev/null && . <(gh completion -s zsh) && complete -F _gh
|
|||
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
|
||||
command -v minikube >/dev/null && . <(minikube completion zsh) && complete -F __minikube_convert_bash_to_zsh m
|
||||
command -v velero >/dev/null && . <(velero completion zsh) && complete -F __start_velero v
|
||||
|
|
Loading…
Reference in New Issue