Skip to content

Instantly share code, notes, and snippets.

@daltonjorge
Last active December 17, 2015 08:28
Show Gist options
  • Save daltonjorge/5579774 to your computer and use it in GitHub Desktop.
Save daltonjorge/5579774 to your computer and use it in GitHub Desktop.
export JRUBY_OPTS=--1.8
export PS1='\n\[\033[38m\]\u\[\033[32m\] \w \[\033[1;33m\]`~/.rvm/bin/rvm-prompt i v g
`\[\033[0;31m\] `git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /
`\[\033[37m\]\n$\[\033[00m\] '
function parse_git_dirty {
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working directory clean" ]] && echo "⚡"
}
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/"
}
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
function parse_hg_dirty {
[[ $( hg status 2> /dev/null ) != "" ]] && echo "⚡"
}
function parse_hg_branch {
hg branch 2> /dev/null | sed -e "s/\(.*\)/[\1$(parse_hg_dirty)]/"
}
export PS1='\u:\[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$(parse_hg_branch)$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment