Skip to content

Instantly share code, notes, and snippets.

@peterpham
Created December 6, 2018 09:12
Show Gist options
  • Save peterpham/75e2502b5de94ae31eaf063187490c52 to your computer and use it in GitHub Desktop.
Save peterpham/75e2502b5de94ae31eaf063187490c52 to your computer and use it in GitHub Desktop.
Custom Bash Profile (color and git branch)
export CLICOLOR=1
export LSCOLORS=BxDxfxfxgxdxdxhbadbxbx
PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\u\[\033[00m\]@\[\033[01;31m\]\h\[\033[00m\]:\[\033[01;33m\]\w\[\033[00m\]'
#export PS1
# Git branch in prompt.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="$PS1\$(parse_git_branch)\[\033[00m\] $ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment