Skip to content

Instantly share code, notes, and snippets.

@litchfield
Created May 18, 2015 00:15
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 litchfield/91e0f24e3cbfa2852bbc to your computer and use it in GitHub Desktop.
Save litchfield/91e0f24e3cbfa2852bbc to your computer and use it in GitHub Desktop.
bash profile
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