Skip to content

Instantly share code, notes, and snippets.

@gjyoung1974
Last active February 12, 2019 01:31
Show Gist options
  • Save gjyoung1974/d8b4f54294c52bde16e33e30e0f221e2 to your computer and use it in GitHub Desktop.
Save gjyoung1974/d8b4f54294c52bde16e33e30e0f221e2 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Pretty Colors!
export CLICOLOR=1
export LSCOLORS=ExGxBxDxCxEgEdxbxgxcxd
export PS1="\[\e[34m\]\u\[\e[m\]\[\e[35m\]@\[\e[m\]\[\e[32m\]\h\[\e[m\]:\[\e[36m\]\w\[\e[m\]\[\e[33m\]\\$\[\e[m\] "
PATH=$HOME/apps:$PATH
export PATH
# Bash completion
if [ -f $(brew --prefix)/etc/bash_completion ]; then
source $(brew --prefix)/etc/bash_completion
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment