Created
April 12, 2011 14:30
-
-
Save jonbalbarin/915592 to your computer and use it in GitHub Desktop.
best bash prompt ever
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
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo "("${ref#refs/heads/}")" | |
} | |
# PS1 prompt color vars | |
export PROMPT_DIRTRIM='2' #only works with bash 4.x | |
RED="\[\033[1;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
WHITE="\[\033[0;37m\]" | |
PURPLE="\[\033[1;35m\]" | |
BLUE="\[\033[0;34m\]" | |
TIME="[\t]" | |
DIRNAME="\w" | |
export PS1="$PURPLE$DIRNAME$RED\$(parse_git_branch)$YELLOW\$$WHITE " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment