Last active
December 17, 2015 08:28
-
-
Save daltonjorge/5579774 to your computer and use it in GitHub Desktop.
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
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