git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormail_redacted_for_web 2026-05-23 10:41:57 +0200
committermail_redacted_for_web 2026-05-23 10:41:57 +0200
commit0524a83e9d6443c0114f30ef0bce1bf1e6702f3b (patch)
tree723d904df4001eb0f976aaf57ace9153cfdc001c
parent9b3afbba3613541653803bafeffcf88768120594 (diff)
downloaddotfiles-0524a83e9d6443c0114f30ef0bce1bf1e6702f3b.tar.bz2
feat: increase history size to 2^14
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index c1fee85..e34c428 100644
--- a/.bashrc
+++ b/.bashrc
@@ -10,7 +10,7 @@ export HISTCONTROL=ignoredups
# If the sysadmins do not care about history timestamps, let us do that:
[ -z "$HISTTIMEFORMAT" ] && export HISTTIMEFORMAT="%F %T "
# same philosophy, other history settings:
-[ -z "$HISTSIZE" ] && export HISTSIZE=10240
+[ -z "$HISTSIZE" ] && export HISTSIZE=16384
[ -z "$HISTCONTROL" ] && export HISTCONTROL=ignoredups
# stuff before $BBD
# shellcheck disable=SC1090