From 5266d697de80502a98aca824dd8b8ed4a7dbbb9c Mon Sep 17 00:00:00 2001 From: Jo Date: Sun, 9 Feb 2025 23:53:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20update=20nushell=20comments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/home/apps/nushell/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/apps/nushell/default.nix b/modules/home/apps/nushell/default.nix index 75b4ef2..3d8d7e3 100644 --- a/modules/home/apps/nushell/default.nix +++ b/modules/home/apps/nushell/default.nix @@ -25,13 +25,13 @@ in { $env.config = { completions: { case_sensitive: false # case-sensitive completions - quick: true # set to false to prevent auto-selecting completions - partial: true # set to false to prevent partial filling of the prompt + quick: true # auto complete selections + partial: true # partial filling of prompts algorithm: "fuzzy" # prefix or fuzzy external: { - # set to false to prevent nushell looking into $env.PATH to find more suggestions + # discover completions using $env.PATH enable: true - # set to lower can improve completion performance at the cost of omitting some options + # lowering can improve completion performance at the cost of omitting some options max_results: 200 completer: $carapace_completer # check 'carapace_completer' }