From 4db41dd1544aba81f1db843249be4117f2331153 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 13 Jan 2025 22:00:42 +0100 Subject: [PATCH] ZSH Config: set history options --- Configs/ZSHShell/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index 989c864..da76b5f 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -20,6 +20,9 @@ zstyle ':completion:*' rehash true # automatically zstyle ':completion:*' accept-exact '*(N)' zstyle ':completion:*' use-cache on zstyle ':completion:*' cache-path ~/.zsh/cache +HISTFILE=~/.zhistory +HISTSIZE=100000 +SAVEHIST=10000000 ####################################################################################################################################################