1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

zsh: use ZDOTDIR over XDG_CONFIG_HOME

ZSH is programmed to prefer this ordering, so honor that in the ZSH
configuration as well.

Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
Joe Groocock 2020-08-23 16:38:34 +01:00
parent ecb282cabb
commit a2ad4853ed
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -1,5 +1,5 @@
# Config and cache directory paths
ZSH_DIR="$XDG_CONFIG_HOME/zsh"
ZSH_DIR="${ZDOTDIR:-$XDG_CONFIG_HOME/zsh}"
LOG_DIR="$XDG_DATA_HOME/logs"
HISTFILE="$XDG_DATA_HOME/zsh/history"
HISTSIZE=999999