Skip to content

Instantly share code, notes, and snippets.

@jodosha
Created February 3, 2012 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jodosha/1729472 to your computer and use it in GitHub Desktop.
Save jodosha/1729472 to your computer and use it in GitHub Desktop.
# (c) 2012 Luca Guidi (lucaguidi.com) – Released under MIT License
#
# It prompts:
# *[master][~/Developer/epts]% rb:1.9.3-p0
#
# Meaning:
# - The asterisk is for mark uncommitted git changes
# - In the square brackets are respectively: for the current git branch
# and for the current directory
# - The percent is the prompt
# - The 'rb' indicates the current version of Ruby (RBenv and RVM are supported)
# #RVM settings
# if [[ -s ~/.rvm/scripts/rvm ]] ; then
# RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1"
# fi
# RBenv
RPS1="%{$fg[yellow]%}rb:%{$reset_color%}%{$fg[red]%}\$(rbenv version-name)%{$reset_color%} $EPS1"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
git_custom_status() {
local cb=$(current_branch)
if [ -n "$cb" ]; then
echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
fi
}
PROMPT='$(git_custom_status)%{$fg[cyan]%}[%~% ]%{$reset_color%}%B%%%b '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment