aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:06 +1300
commit7ef931f898aebfe1f0219bed2bf5128d8b25f74b (patch)
tree2fcb275f74add9383b9a155206a63aa4dec5f1b5 /zsh
parentMerge branch 'release/v10.15.0' into develop (diff)
downloaddotfiles-7ef931f898aebfe1f0219bed2bf5128d8b25f74b.tar.gz
dotfiles-7ef931f898aebfe1f0219bed2bf5128d8b25f74b.zip
Use inline integers rather than bit shifting
Syntax highlighting doesn't deal with it well
Diffstat (limited to 'zsh')
-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