This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # provides a prompt in the following manner: | |
| # name@machine path [git branch●] » | |
| # where ● == color coded ball based on status of branch | |
| # red means uncommitted, yellow means committed but not not pushed, green means up to date | |
| autoload -Uz vcs_info | |
| zstyle ':vcs_info:*' stagedstr '%F{28}●' | |
| zstyle ':vcs_info:*' unstagedstr '%F{11}●' | |
| zstyle ':vcs_info:*' check-for-changes true | |
| zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{11}%r' |
NewerOlder