From cd25818bc901218e15a62496b8787fe143276d97 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 5 Jan 2024 18:14:21 +0100 Subject: [PATCH] bashrc: Fix HISTSIZE overflowing --- shell/bash/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc index ab18cb2..d260806 100755 --- a/shell/bash/.bashrc +++ b/shell/bash/.bashrc @@ -26,7 +26,7 @@ export PATH="$HOME/.local/bin:$PATH" export EDITOR="hx" export HISTFILESIZE= -export HISTSIZE=4294967296 +export HISTSIZE=4294967295 # fnm FNM_PATH="$HOME/.local/share/fnm"