From e877b6c0132817a0cce5d912c14ca115d27bfdfb Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Wed, 28 May 2025 22:01:49 +0200 Subject: [PATCH] style(.zshrc): fix command syntax in zsh configuration file --- .zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 68ceb98..5341af4 100644 --- a/.zshrc +++ b/.zshrc @@ -129,9 +129,10 @@ source $HOME/.zshenv 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. source <(ng completion script) +fi # bun completions [ -s "$HOME/.bun/_bun" ] && source "$HOME/.bun/_bun"