Skip to content

Instantly share code, notes, and snippets.

View danielgrippi's full-sized avatar

Daniel Grippi danielgrippi

  • 01:13 (UTC -05:00)
View GitHub Profile
@tj
tj / ps1.sh
Created June 11, 2011 03:34
ps1
function git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/'
}
PS1=" λ \W\$(git_branch): "
PS2=" | "