Skip to content

Instantly share code, notes, and snippets.

@eklitzke
Created April 17, 2009 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eklitzke/97294 to your computer and use it in GitHub Desktop.
Save eklitzke/97294 to your computer and use it in GitHub Desktop.
source /etc/bash_completion.d/git
# User specific aliases and functions
PATH=$HOME/.cabal/bin:$HOME/local/bin:$PATH
case $TERM in
xterm*|rxvt*|gnome*|eterm* )
PS1='\[\033[01;35m\][\[\033[01;32m\]\u@\h \[\033[01;34m\]\W$(__git_ps1 " (%s)")\[\033[00m\]\[\033[01;35m\]]\$\[\033[0m\] '
;;
dumb|* )
PS1='[\u@\h \W]\$ '
;;
esac
export PS1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment