summaryrefslogtreecommitdiffstats
path: root/dot_config/zsh
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-11-12 13:39:31 -0600
committerMatt Strapp <matt@mattstrapp.net>2024-11-12 13:39:31 -0600
commit1305288079f6d5665d6226d7b266899eb1a289a5 (patch)
tree97bd9b99d694c4f6edaa9b4598767691361c7e1e /dot_config/zsh
parentoops (diff)
downloaddotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar.gz
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar.bz2
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar.lz
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar.xz
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.tar.zst
dotfiles-1305288079f6d5665d6226d7b266899eb1a289a5.zip
make the history file both extremely large and make sure it always can existHEADmaster
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'dot_config/zsh')
-rw-r--r--dot_config/zsh/dot_zshrc7
1 files changed, 5 insertions, 2 deletions
diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc
index a592706..296d368 100644
--- a/dot_config/zsh/dot_zshrc
+++ b/dot_config/zsh/dot_zshrc
@@ -39,8 +39,11 @@ setopt interactive_comments
setopt complete_aliases
# History in cache directory:
-HISTSIZE=100000000
-SAVEHIST=100000000
+HISTSIZE=999999999
+SAVEHIST=$HISTSIZE
+if [ -z "$XDG_STATE_HOME/zsh" ]; then
+ mkdir -p "$XDG_STATE_HOME/zsh"
+fi
HISTFILE="$XDG_STATE_HOME"/zsh/history
setopt BANG_HIST # Treat the '!' character specially during expansion.
setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format.