Skip to content

Instantly share code, notes, and snippets.

@paulvstheworld
Created April 20, 2014 21:20
Show Gist options
  • Select an option

  • Save paulvstheworld/11125581 to your computer and use it in GitHub Desktop.

Select an option

Save paulvstheworld/11125581 to your computer and use it in GitHub Desktop.
My Terminal Config
# custom prompt
# export PS1="\[\033[1;35m\]\u\[\033[0m\]:\[\033[1;35m\]\W\[\033[0m\]$ "
# color ls
export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
# color grep
export GREP_OPTIONS='--color=auto'
source /usr/local/bin/virtualenvwrapper_lazy.sh
source /Users/paul/.rvm/scripts/rvm
alias rmpyc='find . -name "*.pyc" -exec rm {} \;'
alias rmsqig='find . -name "*~" -exec rm {} \;'
alias ls='ls -G'
alias ll='ls -al'
alias la='ls -a'
alias emacs='/usr/local/Cellar/emacs/24.3/bin/emacs'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment