From f3ca93e7e8529da006a30d0e7fee7009821f8fb6 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Tue, 17 Sep 2024 06:22:54 -0400 Subject: [PATCH] fix(zsh): add missing xdg confg env var --- home/dot_zshenv | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home/dot_zshenv b/home/dot_zshenv index 87e9873..e0eb740 100644 --- a/home/dot_zshenv +++ b/home/dot_zshenv @@ -34,8 +34,6 @@ TMPPREFIX="${TMPDIR%/}/zsh" if [[ ! -d "$TMPPREFIX" ]]; then mkdir -p "$TMPPREFIX" fi -# Necessary for tmux on WSL, shouldn't impact macos -export TMUX_TMPDIR='/tmp' # Paths typeset -gU cdpath fpath mailpath path @@ -78,4 +76,5 @@ done export -U PATH export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc +export XDG_CONFIG_HOME=$HOME/.config