dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README

commit 8af9f41c67458468304c2d6f9247dd5223f12dce
parent 7960654a4455f2ff3351df906a968503dae43cdb
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Sat, 22 Feb 2025 20:20:01 -0300

bash: increase HISTFILESIZE

Diffstat:
M.bashrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -9,8 +9,8 @@ shopt -s histappend histreedit mkdir -p "${XDG_STATE_HOME:-${HOME}/.local/state}"/bash HISTFILE="${XDG_STATE_HOME:-${HOME}/.local/state}"/bash/history HISTCONTROL=ignoreboth -HISTSIZE=100000 -HISTFILESIZE=200000 +HISTSIZE=200000 +HISTFILESIZE=400000 HISTTIMEFORMAT="%D %T " # shellcheck disable=SC2034