Skip to content

Instantly share code, notes, and snippets.

View avalliere's full-sized avatar

Andrea avalliere

  • Seattle, WA
View GitHub Profile
@avalliere
avalliere / .bash_profile.sh
Created May 5, 2019 05:23
Bare minimum bash_profile config to not go crazy
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\W \$(parse_git_branch) 🦷 "
export EDITOR=nano