Skip to content

Instantly share code, notes, and snippets.

@zackdever
Created July 5, 2012 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zackdever/3057074 to your computer and use it in GitHub Desktop.
Save zackdever/3057074 to your computer and use it in GitHub Desktop.
quick bash ~/.profile for demo macbook pro
# use local node packages
export PATH="./node_modules/.bin:$PATH"
# paint with all the colors of the wind
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
# ref: http://www.ibm.com/developerworks/linux/library/l-tip-prompt/
export PS1="\u@\h \[\e[37m\]\W \[\e[36m\]$ \[\e[0m\]"
# typing sucks
alias s="git status"
alias d="git diff"
set -o vi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment