aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-24 10:27:00 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-24 10:27:00 +1200
commitded4d5229ec0b156839d1fc994e043915a8c491a (patch)
tree9123b94f336967d3e88e266677e06fbe4a4e2f51 /bash/bashrc
parentFix a pdksh warning (diff)
downloaddotfiles-ded4d5229ec0b156839d1fc994e043915a8c491a.tar.gz
dotfiles-ded4d5229ec0b156839d1fc994e043915a8c491a.zip
Bump history limits back up a bit
Let's see if this actually does slow things down as much as I thought
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/bash/bashrc b/bash/bashrc
index f5ca7c11..5e32185b 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -16,11 +16,11 @@ esac
# Don't do anything if running a restricted shell
shopt -q restricted_shell && return
-# Keep around four thousand lines of history in file
-HISTFILESIZE=$((1 << 12))
+# Keep around 32K lines of history in file
+HISTFILESIZE=$((1 << 15))
-# Keep around one thousand lines of history in memory
-HISTSIZE=$((1 << 10))
+# Keep around 4K lines of history in memory
+HISTSIZE=$((1 << 12))
# Ignore duplicate commands and whitespace in history
HISTCONTROL=ignoreboth