📝 update nushell comments

This commit is contained in:
Jo 2025-02-09 23:53:19 +01:00
parent 24fff4ee33
commit 5266d697de

View file

@ -25,13 +25,13 @@ in {
$env.config = { $env.config = {
completions: { completions: {
case_sensitive: false # case-sensitive completions case_sensitive: false # case-sensitive completions
quick: true # set to false to prevent auto-selecting completions quick: true # auto complete selections
partial: true # set to false to prevent partial filling of the prompt partial: true # partial filling of prompts
algorithm: "fuzzy" # prefix or fuzzy algorithm: "fuzzy" # prefix or fuzzy
external: { external: {
# set to false to prevent nushell looking into $env.PATH to find more suggestions # discover completions using $env.PATH
enable: true 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 max_results: 200
completer: $carapace_completer # check 'carapace_completer' completer: $carapace_completer # check 'carapace_completer'
} }