From 7d294069e66e16a69c05083d0d0bf14ffdc31e93 Mon Sep 17 00:00:00 2001 From: jowj Date: Mon, 13 Jan 2020 11:46:23 -0600 Subject: [PATCH] Make zsh work with history / C-r again. --- .zshrc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.zshrc b/.zshrc index 81ba8cc..e27f52c 100644 --- a/.zshrc +++ b/.zshrc @@ -34,12 +34,7 @@ man() { man "$@" } -# history control variables -export HISTCONTROL=ignoreboth -export HISTSIZE="INFINITE" -export HISTFILESIZE=5000 -export HISTCONTROL="ignorespace" -export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " +setopt appendhistory # make less more friendly for non-text input files, see lesspipe(1) [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"