mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
12 lines
381 B
Plaintext
12 lines
381 B
Plaintext
# XDG
|
|
export XDG_DATA_HOME=$HOME/.local/share
|
|
export XDG_CONFIG_HOME=$HOME/.config
|
|
export XDG_STATE_HOME=$HOME/.local/state
|
|
export XDG_CACHE_HOME=$HOME/.cache
|
|
export XDG_RUNTIME_DIR=/run/user/$UID
|
|
|
|
# Tell various apps where to find their config
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
|
export PSQLRC="$XDG_CONFIG_HOME/pg/psqlrc"
|
|
export ASDF_CONFIG_FILE="$XDG_CONFIG_HOME/asdf/asdfrc"
|