Initial checkin

This commit is contained in:
Alex Kelly 2021-06-01 13:54:14 -04:00
commit 16e1ab5b9c
23 changed files with 2752 additions and 0 deletions

9
dot_direnvrc Normal file
View file

@ -0,0 +1,9 @@
layout_virtualenv() {
local venv_path="$1"
source ${venv_path}/bin/activate
}
layout_virtualenvwrapper() {
local venv_path="${WORKON_HOME}/$1"
layout_virtualenv $venv_path
}