10 lines
199 B
Bash
10 lines
199 B
Bash
|
ZGP="$HOME/Library/Homebrew/opt/zsh-git-prompt/zshrc.sh"
|
||
|
if [ -n "$ZSH_VERSION" ]; then
|
||
|
if [[ -e "$ZGP" ]]; then
|
||
|
source "$ZGP"
|
||
|
fi
|
||
|
export PROMPT='%m:%~ $(git_super_status)$ '
|
||
|
fi
|
||
|
|
||
|
|