Update dotfiles/.zshrc
This commit is contained in:
parent
0dde4089c8
commit
415a6c9690
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue