Update dotfiles/.zshrc

This commit is contained in:
Brian Zalewski 2022-10-29 15:43:28 +00:00
parent 0dde4089c8
commit 415a6c9690

View file

@ -338,12 +338,12 @@ fi
### gh ### gh
if command -v gh > /dev/null; then if command -v gh > /dev/null; then
eval "$(gh completion -s zsh)" eval $(gh completion -s zsh)
fi fi
### Helm ### Helm
if command -v helm > /dev/null; then if command -v helm > /dev/null; then
eval "$(helm completion zsh)" eval $(helm completion zsh)
fi fi
### Hyperfine ### Hyperfine
@ -358,7 +358,7 @@ fi
### kubectl ### kubectl
if command -v kubectl > /dev/null; then if command -v kubectl > /dev/null; then
eval "$(kubectl completion zsh)" eval $(kubectl completion zsh)
fi fi
### mcfly ### mcfly
@ -374,7 +374,7 @@ fi
### Volta ### Volta
if command -v volta > /dev/null; then if command -v volta > /dev/null; then
eval "$(volta completions zsh)" eval $(volta completions zsh)
fi fi
### Fig ### Fig