style(.zshrc): fix command syntax in zsh configuration file
This commit is contained in:
3
.zshrc
3
.zshrc
@ -129,9 +129,10 @@ source $HOME/.zshenv
|
|||||||
|
|
||||||
eval "$(direnv hook zsh)"
|
eval "$(direnv hook zsh)"
|
||||||
|
|
||||||
if [ command -v ng >/dev/null ]; then
|
if command -v ng >/dev/null; then
|
||||||
# Load Angular CLI autocompletion if ng command is available.
|
# Load Angular CLI autocompletion if ng command is available.
|
||||||
source <(ng completion script)
|
source <(ng completion script)
|
||||||
|
fi
|
||||||
|
|
||||||
# bun completions
|
# bun completions
|
||||||
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
|
[ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"
|
||||||
|
Reference in New Issue
Block a user