From 1e0545152a7c69bee4665e0e4c8b62b76801dc38 Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Fri, 25 Nov 2022 23:35:35 +0100 Subject: [PATCH] zshrc: simplify history storage --- etc/zsh/zshrc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 0536058..cf4ffbe 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -181,14 +181,7 @@ function loop-shell { HISTFILE=~/.history HISTSIZE=10000000 SAVEHIST=10000000 -setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format. -setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history. -setopt HIST_IGNORE_DUPS # Don't record an entry that was just recorded again. -setopt HIST_IGNORE_ALL_DUPS # Delete old recorded entry if new entry is a duplicate. -setopt HIST_FIND_NO_DUPS # Do not display a line previously found. setopt HIST_IGNORE_SPACE # Don't record an entry starting with a space. -setopt HIST_SAVE_NO_DUPS # Don't write duplicate entries in the history file. -setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording entry. setopt HIST_VERIFY # Don't execute immediately upon history expansion. bindkey '\e[A' history-beginning-search-backward # completion from history with Up/Down keys bindkey '\e[B' history-beginning-search-forward #