Skip to content

Instantly share code, notes, and snippets.

View pbhoraskar911's full-sized avatar
πŸ‘¨β€πŸ’»
Keep Coding

Pranav Bhoraskar pbhoraskar911

πŸ‘¨β€πŸ’»
Keep Coding
  • India
View GitHub Profile
@pbhoraskar911
pbhoraskar911 / .zshrc
Created February 1, 2023 10:19 — 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}"