Skip to content

Instantly share code, notes, and snippets.

@pinkhominid
Last active November 30, 2018 22:59
Show Gist options
  • Save pinkhominid/5c3d48aa7cdff0260d0e8382ace12943 to your computer and use it in GitHub Desktop.
Save pinkhominid/5c3d48aa7cdff0260d0e8382ace12943 to your computer and use it in GitHub Desktop.
My macOS Bash dotfiles
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1="\[\033[36m\]je\[\033[m\]@\[\033[32m\]amba1:\[\033[33;1m\]\w\[\033[31m\]\$(parse_git_branch)\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
alias ls='ls -GFh'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment