From a451e488873940ba90046e8c9975150e22dc327f Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Wed, 27 Dec 2023 19:09:11 +0100 Subject: [PATCH] nushell: Enable history sync The alternative is worse... --- tree/.config/nushell/config.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree/.config/nushell/config.nu b/tree/.config/nushell/config.nu index efeac10..1540cf4 100644 --- a/tree/.config/nushell/config.nu +++ b/tree/.config/nushell/config.nu @@ -246,7 +246,7 @@ $env.config = { history: { max_size: 100_000 # Session has to be reloaded for this to take effect - sync_on_enter: false # Enable to share history between multiple sessions, else you have to close the session to write history to file + 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" isolation: false # only available with sqlite file_format. true enables history isolation, false disables it. true will allow the history to be isolated to the current session using up/down arrows. false will allow the history to be shared across all sessions. }