style(.zshrc): fix command syntax in zsh configuration file

This commit is contained in:
2025-05-28 22:01:49 +02:00
parent ae9e3c8245
commit e877b6c013

3
.zshrc
View File

@ -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"