From 28d704a9c6b517ae68f81c1169aa7e7059ec84c6 Mon Sep 17 00:00:00 2001 From: krolxon Date: Sat, 6 Sep 2025 19:52:28 +0530 Subject: [PATCH] zsh: increase histsize --- .config/zsh/.zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index b436ad9..1970fa9 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -4,8 +4,8 @@ setopt autocd # Automatically cd into typed directory. stty stop undef # Disable ctrl-s to freeze terminal. # History in cache directory: -HISTSIZE=10000 -SAVEHIST=10000 +HISTSIZE=1000000 +SAVEHIST=1000000 HISTFILE=~/.cache/history # Load aliases if existent.