From e7260b35253fd7d9ff8b8578252ab7d75cb2620f Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 5 Jan 2024 18:01:01 +0100 Subject: [PATCH] bashrc: Fix empty HISTSIZE error --- shell/bash/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc index 8f16977..ab18cb2 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= +export HISTSIZE=4294967296 # fnm FNM_PATH="$HOME/.local/share/fnm"