Created
March 31, 2017 18:59
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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