We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e22e6 commit 102fe63Copy full SHA for 102fe63
setup.sh
@@ -18,3 +18,5 @@ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$
18
19
mkdir -p ~/.config/powerline-shell
20
ln -s "$DIR/powerline-shell" ~/.config/powerline-shell
21
+
22
+ln -s "$DIR/zshrc" ~/.zshrc
zshrc
@@ -115,7 +115,9 @@ export NVM_DIR="$HOME/.nvm"
115
export T="$HOME/teclada/"
116
117
# Load Angular CLI autocompletion.
118
-source <(ng completion script)
+if command -v ng &> /dev/null; then
119
+ source <(ng completion script)
120
+fi
121
122
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
123
[[ ! -f ~/p10k.zsh ]] || source ~/p10k.zsh
0 commit comments