Skip to content

Instantly share code, notes, and snippets.

@jstaffans
Last active December 18, 2015 12:08
Show Gist options
  • Save jstaffans/5780188 to your computer and use it in GitHub Desktop.
Save jstaffans/5780188 to your computer and use it in GitHub Desktop.
alias ls="ls -G"
alias ll="ls -lh"
alias lt="ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
# pip should only run if there is a virtualenv currently activated
export PIP_REQUIRE_VIRTUALENV=true
# cache pip-installed packages to avoid re-downloading
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
export PYTHONPATH=/usr/local/lib/python-2.7/site-packages
source $(brew --prefix)/etc/bash_completion.d/git-prompt.sh
PS1="\u@\h \e[30;1m\w\e[0m\$(__git_ps1 \" (%s) \") \n\$ "
export PATH=/Users/jost/bin:$PATH$
export LC_CTYPE=en_US.UTF-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment