From 1d56537c1d0d48d20e8242f35568c83f5b3ff64c Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Mon, 23 Nov 2020 02:20:03 +0100 Subject: [PATCH] direnv: Add python virtual environment template --- .local/share/direnv/templates/python-venv.envrc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .local/share/direnv/templates/python-venv.envrc diff --git a/.local/share/direnv/templates/python-venv.envrc b/.local/share/direnv/templates/python-venv.envrc new file mode 100644 index 0000000..4d8d4a6 --- /dev/null +++ b/.local/share/direnv/templates/python-venv.envrc @@ -0,0 +1,2 @@ +VIRTUAL_ENV_DISABLE_PROMPT=1 +source venv/bin/activate