mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
neovim config
This commit is contained in:
20
nushell/config.nu
Normal file
20
nushell/config.nu
Normal file
@@ -0,0 +1,20 @@
|
||||
let carapace_completer = { |spans|
|
||||
carapace $spans.0 nushell $spans | from json
|
||||
}
|
||||
|
||||
$env.config = {
|
||||
show_banner: false,
|
||||
completions: {
|
||||
case_sensitive: false
|
||||
quick: true
|
||||
partial: true
|
||||
algorithm: "fuzzy"
|
||||
external: {
|
||||
enable: true
|
||||
max_results: 100
|
||||
completer: $carapace_completer
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$env.PATH = ($env.PATH | split row (char esep) | append /usr/bin/env)
|
||||
Reference in New Issue
Block a user