Skip to content

Instantly share code, notes, and snippets.

@tj
Created June 11, 2011 03:34
Show Gist options
  • Save tj/1020219 to your computer and use it in GitHub Desktop.
Save tj/1020219 to your computer and use it in GitHub Desktop.
ps1
function git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/'
}
PS1=" λ \W\$(git_branch): "
PS2=" | "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment