From d11e86cfcf659fb2181fae6788cbbdcdc0392fa3 Mon Sep 17 00:00:00 2001 From: Nikolas Weger Date: Sat, 28 Aug 2021 23:28:50 +0200 Subject: [PATCH] Update dot_config/zsh/export.zsh --- dot_config/zsh/export.zsh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot_config/zsh/export.zsh b/dot_config/zsh/export.zsh index 3aa7814..be9cb3c 100644 --- a/dot_config/zsh/export.zsh +++ b/dot_config/zsh/export.zsh @@ -4,7 +4,9 @@ export GPG_TTY=$TTY # History export SAVEHIST=1048576 export HISTSIZE=1048576 -export HISTFILE="$HOME/.cache/zsh4humans/cache/history" + +mkdir -p "$HOME/.cache/zsh" &>/dev/null +export HISTFILE="$HOME/.cache/zsh/history" # Evalcache export ZSH_EVALCACHE_DIR="$HOME/.cache/evalcache"