方法
$ brew install git
$ brew install zsh
gitがzsh管理になっているか確認
$ which git
/opt/homebrew/bin/git
~/.zshrc
# For git
autoload -Uz vcs_info
setopt prompt_subst
zstyle ':vcs_info:git:*' check-for-changes true
zstyle ':vcs_info:git:*' stagedstr "%F{magenta}!"
zstyle ':vcs_info:git:*' unstagedstr "%F{yellow}+"
zstyle ':vcs_info:*' formats "%F{cyan}%c%u[%b]%f"
zstyle ':vcs_info:*' actionformats '[%b|%a]'
precmd () { vcs_info }
# プロンプトカスタマイズ
PROMPT='
[%B%F{red}%n@%m%f%b:%F{green}%~%f]%F{cyan}$vcs_info_msg_0_%f
%F{yellow}$%f '
上記を適用することで以下のようにterminalの画面になる。色分けされるのと、現在のブランチの位置が知れて便利。
[user_name@hardware_name:~/Workspace/Job/Seattle/GitRepo/terraform/][main]
参考
以上