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