aboutsummaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-02-27 04:14:39 -0500
committertdro <tdro@users.noreply.github.com>2022-02-27 04:16:55 -0500
commit4b6a1ef391e7c3ae72c69f925457447578366dd5 (patch)
tree513fa2e422d93fb01af98383644d7c93c5922d20 /.bash_profile
parent230e609604aaf5c2efb781885ecb0195e8fbb8be (diff)
downloaddotfiles-4b6a1ef391e7c3ae72c69f925457447578366dd5.tar.gz
dotfiles-4b6a1ef391e7c3ae72c69f925457447578366dd5.tar.bz2
dotfiles-4b6a1ef391e7c3ae72c69f925457447578366dd5.zip
.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.
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile4
1 files changed, 2 insertions, 2 deletions
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"