aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-16 16:46:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-16 16:46:37 +1200
commit9f2fdf8341d74946810caa2cc16c2c98342b4c38 (patch)
treebd565ffe8ada5b558f100ea256bbd30afac36236 /bash/bashrc
parentKeep a bit more history in memory (diff)
downloaddotfiles-9f2fdf8341d74946810caa2cc16c2c98342b4c38.tar.gz
dotfiles-9f2fdf8341d74946810caa2cc16c2c98342b4c38.zip
May as well keep a huge amount of history
Even on my busiest system it's only a megabyte
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc
index c96ed7b2..9fe69341 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -16,8 +16,8 @@ if shopt -q restricted_shell ; then
return
fi
-# Keep around a million lines of history in file
-HISTFILESIZE=$((2 ** 20))
+# Keep around sixteen million lines of history in file
+HISTFILESIZE=$((2 ** 24))
# Keep around four thousand lines of history in memory
HISTSIZE=$((2 ** 12))