Skip to content

Instantly share code, notes, and snippets.

@Michaela-Davis
Created March 31, 2017 18:59
Show Gist options
  • Save Michaela-Davis/f60a8dbd110788ce421cf6b13a07a0a9 to your computer and use it in GitHub Desktop.
Save Michaela-Davis/f60a8dbd110788ce421cf6b13a07a0a9 to your computer and use it in GitHub Desktop.
Terminal Colors and Breaks: from Improve your Terminal @ http://portlandcodeschool.github.io/jsi/2015/08/10/welcome/
In terminal
atom ~/.bash_profile
Add the following lines to that file:
export PS1="\[$(tput bold)\]\[$(tput setaf 5)\]\u\[$(tput sgr0)\]:\[$(tput bold)\]\[$(tput setaf 2)\]\h\[$(tput sgr0)\]:\[$(tput bold)\]\[$(tput setaf 4)\]\w\[$(tput sgr0)\]\n$ \[$(tput sgr0)\]"
export PATH="$HOME/bin:/usr/local/bin:/usr/local/sbin:$PATH"
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
export PAGER="less"
export EDITOR="atom --wait"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment