Created
April 20, 2014 21:20
-
-
Save paulvstheworld/11125581 to your computer and use it in GitHub Desktop.
My Terminal Config
This file contains hidden or 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
| # 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