Skip to content

Instantly share code, notes, and snippets.

@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=" | "