summaryrefslogtreecommitdiffstats
path: root/.config/bash/bashrc
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-11 09:27:41 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-11 09:27:41 +0200
commit00ebc6f7baa7e9bf4c7f8124d2ed7678d7a01f87 (patch)
treef85525646234da8d4571c33852d58763841c8243 /.config/bash/bashrc
parentbd6edcab3bbb8a356d64e179fe00954be05313c9 (diff)
downloaddotfiles-00ebc6f7baa7e9bf4c7f8124d2ed7678d7a01f87.tar.gz
dotfiles-00ebc6f7baa7e9bf4c7f8124d2ed7678d7a01f87.zip
misc(bash): HISTSIZE 1000 → 10000
Diffstat (limited to '.config/bash/bashrc')
-rw-r--r--.config/bash/bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/bash/bashrc b/.config/bash/bashrc
index e9816c4..bd3994b 100644
--- a/.config/bash/bashrc
+++ b/.config/bash/bashrc
@@ -50,7 +50,7 @@ fi
# History
shopt -s histappend # append to instead of overwriting HISTFILE
-export HISTSIZE=1000 # number of commands to save in history
+export HISTSIZE=10000 # number of commands to save in history
export HISTTIMEFORMAT='%F %T ' # history entry timesptamp format, also enables multi-line entries
export HISTFILESIZE=-1 # don't truncate history
export HISTCONTROL="ignoreboth" # don't save duplicate lines or lines starting with a space