From 4b6a1ef391e7c3ae72c69f925457447578366dd5 Mon Sep 17 00:00:00 2001 From: tdro Date: Sun, 27 Feb 2022 04:14:39 -0500 Subject: .bash_profile: Ensure limitless history According to the bash manual, numeric values less than zero result in every command being saved to the history list. --- .bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.bash_profile') diff --git a/.bash_profile b/.bash_profile index 259ea62..f1080ed 100644 --- a/.bash_profile +++ b/.bash_profile @@ -49,8 +49,8 @@ export GNUPGHOME="$XDG_DATA_HOME/gnupg" export GOPATH="$XDG_DATA_HOME/go" export GTK_OVERLAY_SCROLLING=0 export HISTCONTROL=ignoreboth:erasedups -export HISTFILESIZE= -export HISTSIZE= +export HISTFILESIZE=-1 +export HISTSIZE=-1 export HISTTIMEFORMAT="%d/%m/%y %T " export ICEAUTHORITY="$XDG_CACHE_HOME/ICEauthority" export INPUTRC="$XDG_CONFIG_HOME/inputrc" -- cgit v1.2.3