Skip to content

Instantly share code, notes, and snippets.

@mael
Last active May 16, 2019 11:54
Show Gist options
  • Save mael/88195ec1e929d464f25efabc068744a1 to your computer and use it in GitHub Desktop.
Save mael/88195ec1e929d464f25efabc068744a1 to your computer and use it in GitHub Desktop.
Terminal Appearance in Mac OS X
Open Terminal and type
#vi ~/.bash_profile
Paste in the following lines:
---
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
alias ls='ls -GFh'
---
#source ~/.bash_profile //reload .bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment