perf(xdg): Add XDG dir global vars

This commit is contained in:
punkfairie 2024-03-09 20:06:38 -08:00
parent 3e07a9670c
commit 6b6013ac2c
Signed by: punkfairie
GPG key ID: A86AF57F837E320F

View file

@ -3,6 +3,12 @@
# Base path.
set -Ux fish_user_paths "$HOME/.local/bin"
# Config files.
set -Ux XDG_CONFIG_HOME "$HOME/.config"
set -Ux XDG_CACHE_HOME "$HOME/.cache"
set -Ux XDG_DATA_HOME "$HOME/.local/share"
set -Ux XDG_STATE_HOME "$HOME/.local/state"
# Projects dir.
set -gx HACK "$HOME/hackin"