dotfiles/home/.config/nushell/config.nu
2026-04-12 22:38:09 +09:00

14 lines
258 B
Text

source $"($nu.cache-dir)/carapace.nu"
let carapace_completer = {|spans|
carapace $spans.0 nushell ...$spans | from json
}
$env.config.completions = {
algorithm: "fuzzy"
external: {
enable: true
max_results: 100
completer: $carapace_completer
}
}