From 8487dcf2fb40354ee6acbc8a86dd8d0f0c749d8a Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Thu, 1 Oct 2020 22:16:52 +0200 Subject: [PATCH] Increase history size --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 37ff869..0b39975 100644 --- a/.zshrc +++ b/.zshrc @@ -2,9 +2,9 @@ setopt no_beep inc_append_history hist_ignore_dups hist_ignore_space extended_gl bindkey -e bindkey "^[[3~" delete-char bindkey "^[3;5~" delete-char -export HISTFILE=~/.zsh_history -export HISTSIZE=1000 -export SAVEHIST=1000 +export HISTFILE="$HOME/.zsh_history" +export HISTSIZE=5000 +export SAVEHIST=100000 export CLICOLOR=1 export EDITOR='vim' export PAGER='less'