aboutsummaryrefslogtreecommitdiff
path: root/bash
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 /bash
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 'bash')
-rw-r--r--bash/bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 6e4c31a9..a60a047e 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -29,7 +29,7 @@ fi
unset -f command_not_found_handle
# Keep around 32K lines of history in file
-HISTFILESIZE=$((1 << 15))
+HISTFILESIZE=32768
# Ignore duplicate commands
HISTCONTROL=ignoredups