diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-01-29 18:48:00 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-01-29 18:48:00 +0000 |
commit | c4bc312d2c82b2843c8ed8dcf45cf713934113a4 (patch) | |
tree | 008baa4a4ea218119a79c8efb2f9de8d9b0cd72b | |
parent | 05cf5113be816ce12e98f580a2858090cfb028bd (diff) |
Set Bash HISTSIZE to 10000 instead of using the default 1000
-rw-r--r-- | .bashrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,9 @@ bind '"\e[B":history-search-forward' # HISTORY CONTROL # =============== +# Default if not set is 1000 +export HISTSIZE=10000 + shopt -s histappend # Don't save duplicates |