1 min read
Adding color back to the Mac terminal
Did your terminal lose color after changing the color scheme? Add it back with these two lines in ~/.bash_profile.
export CLICOLOR=1 export LSCOLORS=ExFxBxDxCxegedabagacad
Remember to reload it when you’re done editing with
source ~/.bash_profile
