diff options
author | Zach Smith <zsmith@newhopechurch.tv> | 2025-06-30 09:38:19 -0500 |
---|---|---|
committer | Zach Smith <zsmith@newhopechurch.tv> | 2025-06-30 09:38:19 -0500 |
commit | 9d5498e0a8be1b987c5584659a0e97116ca50079 (patch) | |
tree | 82aa56d9a8a1ad815563fc454c5deab0be92d1ab | |
parent | 5fabb86ef6b456bda48b3671858cb4c8479c824a (diff) |
Define XDG_CONFIG_HOME in zshrc if it is not already
-rw-r--r-- | zsh/zshrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -11,6 +11,7 @@ elif [ -d "$HOME/.zplug" ]; then export ZPLUG_INSTALLED="y" source "$HOME/.zplug/init.zsh" fi +[ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config" HISTFILE="$XDG_CONFIG_HOME/zsh/hist" SAVEHIST=1000 HISTSIZE=1000 |