diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2024-08-18 14:03:32 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2024-08-18 14:36:03 -0700 |
commit | f895e699daf218e7a996d33223a49fdaf81666e4 (patch) | |
tree | f708b06d84f19fb0e11887df5a154ac7ccb269ab | |
parent | 07b7c93eec0482b6c5f195581cc6465f63dda62e (diff) |
calculated estimated 1.47 MiB for .bash_history if HISTSIZE=100000, not too much
-rw-r--r-- | home/xyz/.profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/xyz/.profile b/home/xyz/.profile index 903dfb7a..a25d475d 100644 --- a/home/xyz/.profile +++ b/home/xyz/.profile @@ -17,8 +17,8 @@ export XDG_VIDEOS_DIR PATH="$(find "$HOME/.local/bin" -type d -exec printf '%s:' '{}' \+)$PATH" export PATH -export HISTSIZE=15000 -export HISTFILESIZE=15000 +export HISTSIZE=100000 +export HISTFILESIZE=100000 export HISTCONTROL=ignorespace # sqlite uses VISUAL for the edit() SQL function default text editor |