From 0d4c7ed4d4df95521c0e68662647fd9a87df79cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 14 Oct 2025 12:23:23 +0200 Subject: [PATCH] Move python stuff into XDG directories --- zsh/zprofile.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/zprofile.j2 b/zsh/zprofile.j2 index 9f7e371..ebe78be 100644 --- a/zsh/zprofile.j2 +++ b/zsh/zprofile.j2 @@ -77,6 +77,9 @@ export PGSERVICEFILE="$XDG_CONFIG_HOME/pg_service.conf" export REDISCLI_HISTFILE="$XDG_DATA_HOME"/rediscli_history export REDISCLI_RCFILE="$XDG_CONFIG_HOME"/redisclirc +export PYTHON_HISTORY=$XDG_STATE_HOME/python_history +export PYTHONPYCACHEPREFIX=$XDG_CACHE_HOME/python + umask 0022 {% set env = machine.environment | combine(user.environment) %}