From a0dafcb0f89eb6161ac98fbf388040744f0a5947 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 22 Jun 2023 19:42:55 -0500 Subject: [PATCH] make history.max_size bigger (#9494) # Description make history.max_size bigger so it doesn't eat history closes #9493 # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-utils/src/sample_config/default_config.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-utils/src/sample_config/default_config.nu b/crates/nu-utils/src/sample_config/default_config.nu index 6131788440..c006022b5b 100644 --- a/crates/nu-utils/src/sample_config/default_config.nu +++ b/crates/nu-utils/src/sample_config/default_config.nu @@ -265,7 +265,7 @@ let-env config = { } history: { - max_size: 10000 # Session has to be reloaded for this to take effect + max_size: 100_000 # Session has to be reloaded for this to take effect sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file file_format: "plaintext" # "sqlite" or "plaintext" history_isolation: true # true enables history isolation, false disables it. true will allow the history to be isolated to the current session. false will allow the history to be shared across all sessions.