Skip to content

Instantly share code, notes, and snippets.

@belljustin
Created July 5, 2016 20:07
Show Gist options
  • Select an option

  • Save belljustin/5cfb426916bcfa284443930edecc259e to your computer and use it in GitHub Desktop.

Select an option

Save belljustin/5cfb426916bcfa284443930edecc259e to your computer and use it in GitHub Desktop.
Source virtual env on directory change
cd () {
builtin cd $1
if [ -d ".env" ] ; then
source .env/bin/activate
elif [ -d "env" ] ; then
source env/bin/activate
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment