dotfiles/config/zsh/.zshenv

14 lines
439 B
Plaintext
Raw Normal View History

2024-10-15 00:44:53 +02:00
#shellcheck disable=SC2034
2023-02-14 16:12:48 +01:00
skip_global_compinit=1
2024-11-06 22:48:12 +01:00
export XDG_CACHE_HOME="/tmp/${USER}-cache"
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_DATA_HOME="${HOME}/.local/share"
export XDG_STATE_HOME="${HOME}/.local/state"
export ZDOTDIR="${XDG_CONFIG_HOME}/zsh"
2024-11-05 01:25:34 +01:00
# clean home - needs to be here for Docker Desktop
export DOCKER_CONFIG="${XDG_CONFIG_HOME}/docker"
export GNUPGHOME="${XDG_DATA_HOME}/gnupg"
export LESSHISTFILE='/dev/null'