Created
March 15, 2022 10:19
-
-
Save srstanic/a0059d5036df426f7a289ad5f40fd884 to your computer and use it in GitHub Desktop.
.zshrc
This file contains 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
autoload -U colors && colors | |
## rbenv | |
eval "$(rbenv init - zsh)" | |
## git | |
autoload -Uz vcs_info | |
zstyle ':vcs_info:*' enable git svn | |
zstyle ':vcs_info:git*' formats "%r/%S%{$fg[grey]%} %{$fg[blue]%}%b%{$reset_color%} (%a) %m%u%c%{$reset_color%} " | |
precmd() { | |
vcs_info | |
} | |
setopt prompt_subst | |
PROMPT='${vcs_info_msg_0_}%# ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment