Skip to content

Instantly share code, notes, and snippets.

View rustygeldmacher's full-sized avatar

Rusty Geldmacher rustygeldmacher

View GitHub Profile
function get_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \1/'
}
function gitify_prompt {
local WHITE="\[\033[1;37m\]"
local LIGHT_GRAY="\[\033[0;37m\]"
PS1="\h:\W$WHITE\$(get_git_branch)$LIGHT_GRAY\$ "
PS2='> '
PS4='+ '