From e7d4c902d936fa94c965e3b635bb1ea6f76cfb6b Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Sat, 30 Oct 2021 20:32:35 -0400 Subject: allow for infinite zsh history and append automatically and don't find dups in history --- .zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 1de76ec..5c3d9b4 100644 --- a/.zshrc +++ b/.zshrc @@ -269,8 +269,11 @@ bindkey '[[A' run-help # History file name and maximum size. HISTFILE="$HOME/.zsh/history" -SAVEHIST=15000 -HISTSIZE=15000 +SAVEHIST=9223372036854775807 +HISTSIZE=9223372036854775807 +setopt EXTENDED_HISTORY +setopt INC_APPEND_HISTORY +setopt HIST_FIND_NO_DUPS # Push History from previous sessions. IF $HISTFILE exists. if [ -f $HISTFILE ]; then -- cgit v1.2.3