From 7303222c856561efbaac767c4ab9565701d67085 Mon Sep 17 00:00:00 2001 From: DustVoice Date: Fri, 7 Jul 2023 09:12:58 +0200 Subject: [PATCH] History isolation is not available everywhere yet, disable it in the config for the moment --- .config/nushell/config.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nushell/config.nu b/.config/nushell/config.nu index 9860aec..877b991 100644 --- a/.config/nushell/config.nu +++ b/.config/nushell/config.nu @@ -273,7 +273,7 @@ let-env config = { max_size: 10000 # 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. + # 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. } completions: { case_sensitive: false # set to true to enable case-sensitive completions