Created
May 18, 2015 00:15
-
-
Save litchfield/91e0f24e3cbfa2852bbc to your computer and use it in GitHub Desktop.
bash profile
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
export EDITOR='nano' | |
export PATH="/Applications/Postgres.app/Contents/Versions/9.4/bin:/usr/local/bin:/usr/local/sbin:/usr/local/share/python:$PATH" | |
export HISTSIZE=10000 | |
export HISTFILESIZE=10000 | |
#export PROMPT_COMMAND='echo -ne "\033]0;`hostname -s`\007"' | |
export LSCOLORS=gxfxcxdxbxegedabagacad | |
export PIP_DOWNLOAD_CACHE=$HOME/Library/Caches/pip-downloads | |
alias ls='ls -aGp' | |
alias ll='ls -la' | |
alias l='ls -la' | |
alias recent='gfind . -not -type d -printf "%T+ %p\n" | sort -n | tail -20' | |
PS1='\[\e[01;35m\]\h\[\e[00m\]:\[\e[01;35m\]\w\[\e[00m\]> ' | |
source `which virtualenvwrapper.sh` | |
# fix pip errors installing Pillow | |
export CFLAGS=-Qunused-arguments | |
export CPPFLAGS=-Qunused-arguments | |
function tabname { | |
printf "\e]1;$1\a" | |
} | |
function winname { | |
printf "\e]2;$1\a" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment