Skip to content

Instantly share code, notes, and snippets.

@lazevedo
Created November 8, 2016 12:14
Show Gist options
  • Save lazevedo/3c5822a49218763b3cac7e7b8ec75dc1 to your computer and use it in GitHub Desktop.
Save lazevedo/3c5822a49218763b3cac7e7b8ec75dc1 to your computer and use it in GitHub Desktop.
OSX bashrc
# enable shell colors
export CLICOLOR=1
alias ls='ls -Fa'
# set PS1
if [[ ${EUID} == 0 ]] ; then
PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
else
PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
fi
export PS1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment