fix(zsh): add missing xdg confg env var

This commit is contained in:
Matthew Ryan Dillon 2024-09-17 06:22:54 -04:00
parent 8f63a2f5b8
commit f3ca93e7e8

View file

@ -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