Skip to content

Instantly share code, notes, and snippets.

@srstanic
Created March 15, 2022 10:19
Show Gist options
  • Save srstanic/a0059d5036df426f7a289ad5f40fd884 to your computer and use it in GitHub Desktop.
Save srstanic/a0059d5036df426f7a289ad5f40fd884 to your computer and use it in GitHub Desktop.
.zshrc
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