From fa28e3bb5e94d5237e82ce935f236a0cfcc105e3 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 13 Mar 2025 14:16:07 +0000 Subject: [PATCH] [shell-common] Poetry to setup envs in projects --- shell-common/.config/shell-common/exports.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell-common/.config/shell-common/exports.sh b/shell-common/.config/shell-common/exports.sh index dbc06d6..e8896c3 100644 --- a/shell-common/.config/shell-common/exports.sh +++ b/shell-common/.config/shell-common/exports.sh @@ -24,6 +24,9 @@ if [ -z ${GOROOT+x} ] && [ -d /usr/local/go ]; then export PATH=$PATH:$GOROOT/bin:$HOME/go/bin fi +# Python stuff +export POETRY_VIRTUALENVS_IN_PROJECT=true + # Rust stuff if [ -f $HOME/.cargo/env ]; then source $HOME/.cargo/env