aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:41 +1300
commit9c0e7d95be170361cf669664f19efa42d687d9bb (patch)
tree9b54e4aa1bba19924f961ae725aa0fa95c3b9266 /zsh/zshrc
parentMerge branch 'release/v10.15.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9c0e7d95be170361cf669664f19efa42d687d9bb.tar.gz
dotfiles-9c0e7d95be170361cf669664f19efa42d687d9bb.zip
Merge branch 'release/v10.16.0'v10.16.0
* release/v10.16.0: Use inline integers rather than bit shifting
Diffstat (limited to 'zsh/zshrc')
-rw-r--r--zsh/zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index 6d3239eb..30e7173b 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -15,7 +15,7 @@ bindkey -e
# History settings
setopt histignorealldups sharehistory
HISTFILE=$HOME/.zsh_history
-SAVEHIST=$((1 << 12))
+SAVEHIST=4096
# Load Zsh-specific startup files
for zsh in "$HOME"/.zshrc.d/*.zsh(N) ; do