diff options
author | EuAndreh <eu@euandre.org> | 2022-05-16 01:29:52 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-05-16 01:29:52 -0300 |
commit | c2a8a8786a140b3c6cc830ce0a86afff68477846 (patch) | |
tree | 015a61e88d9a215fef9c2480094b3dbf6b5fa8b6 | |
parent | etc/bash/rc: manually load $XDG_CONFIG_HOME/guix/current/etc/profile (diff) | |
download | dotfiles-c2a8a8786a140b3c6cc830ce0a86afff68477846.tar.gz dotfiles-c2a8a8786a140b3c6cc830ce0a86afff68477846.tar.xz |
etc/bash/rc: explicitly set $HISTSIZE to -1 to represent the infinite value
-rw-r--r-- | etc/bash/rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash/rc b/etc/bash/rc index a70b770..3990ebe 100644 --- a/etc/bash/rc +++ b/etc/bash/rc @@ -24,7 +24,7 @@ if [ -r "$GUIX_PROFILE"/etc/profile ]; then . "$GUIX_PROFILE"/etc/profile fi -HISTSIZE= +HISTSIZE=-1 HISTFILE="$XDG_STATE_HOME/bash-history" HISTCONTROL=ignorespace:ignoredups |