From b69097755b617c2e18e87ff4e51c8872ab6e6efa Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Wed, 8 Nov 2023 22:38:19 +0100 Subject: [PATCH] nushell tweaks --- tree/.config/nushell/config.nu | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tree/.config/nushell/config.nu b/tree/.config/nushell/config.nu index bc8888a..80f125b 100644 --- a/tree/.config/nushell/config.nu +++ b/tree/.config/nushell/config.nu @@ -180,9 +180,8 @@ let light_theme = { # } -# The default config record. This is where much of your global configuration is setup. $env.config = { - show_banner: true # true or false to enable or disable the welcome banner at startup + show_banner: false ls: { use_ls_colors: true # use the LS_COLORS environment variable to colorize output @@ -247,7 +246,7 @@ $env.config = { history: { 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 + sync_on_enter: false # 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. } @@ -256,7 +255,7 @@ $env.config = { case_sensitive: false # set to true to enable case-sensitive completions quick: true # set this to false to prevent auto-selecting completions when only one remains partial: true # set this to false to prevent partial filling of the prompt - algorithm: "prefix" # prefix or fuzzy + algorithm: "fuzzy" # prefix or fuzzy external: { enable: true # set to false to prevent nushell looking into $env.PATH to find more suggestions, `false` recommended for WSL users as this look up may be very slow max_results: 100 # setting it lower can improve completion performance at the cost of omitting some options