From 40d4e6d36113aef0991860ae13b3fb52253a2bea Mon Sep 17 00:00:00 2001 From: Huck Boles Date: Sun, 28 May 2023 10:07:37 -0500 Subject: [PATCH] added: history folder --- .zshenv | 1 + .zshrc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.zshenv b/.zshenv index 231eec6..0cd3605 100644 --- a/.zshenv +++ b/.zshenv @@ -10,6 +10,7 @@ export ZSH="$ZDOTDIR" export ZSHEXTRA="$ZDOTDIR/extra" export ZSHINCLUDE="$ZDOTDIR/include" export ZSHCOMPLETION="$ZSH/completions" +export ZSHHISTORY="$ZSH/history" export ZSH_COMPDUMP="$ZSH/cache/.zcompdump-$HOST" # my folders diff --git a/.zshrc b/.zshrc index 085999a..a5c9015 100644 --- a/.zshrc +++ b/.zshrc @@ -2,7 +2,7 @@ # setup ~/.config/zsh . $ZDOTDIR/.zshenv -[[ ! -d $ZSH ]] && mkdir -p $ZSH/cache $ZSHINCLUDE $ZSHCOMPLETION $ZSHEXTRA +[[ ! -d $ZSH ]] && mkdir -p $ZSH/cache $ZSHINCLUDE $ZSHCOMPLETION $ZSHEXTRA $ZSHHISTORY # options ENABLE_CORRECTION="true" -- 2.44.2