Skip to content

Instantly share code, notes, and snippets.

View stashayancho's full-sized avatar

Stasha Yancho stashayancho

View GitHub Profile
@chrisnolet
chrisnolet / .zshrc
Last active June 17, 2024 23:29
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}"