Skip to content

Instantly share code, notes, and snippets.

View michaelgrace72's full-sized avatar
🎯
Focusing

Mikha Gracia Sugiono michaelgrace72

🎯
Focusing
View GitHub Profile
@michaelgrace72
michaelgrace72 / .zshrc
Created December 1, 2023 07:42 — forked from chrisnolet/.zshrc
Color-coded git branch for zsh prompt
autoload -Uz compinit && compinit
autoload -Uz add-zsh-hook
autoload -Uz vcs_info
add-zsh-hook precmd vcs_info
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' formats " %F{cyan}%c%u(%b)%f"
zstyle ':vcs_info:*' actionformats " %F{cyan}%c%u(%b)%f %a"
zstyle ':vcs_info:*' stagedstr "%F{green}"