fix nushell auto complete shenanigans
This commit is contained in:
@@ -1,9 +1,29 @@
|
||||
$env.config.show_banner = false
|
||||
$env.config.completions.case_sensitive = false
|
||||
$env.config.completions.algorithm = "fuzzy"
|
||||
$env.config.completions.quick = false
|
||||
$env.config.completions.quick = true
|
||||
$env.config.completions.partial = true
|
||||
|
||||
$env.config.keybindings = [
|
||||
{
|
||||
name: completion_menu
|
||||
modifier: none
|
||||
keycode: tab
|
||||
mode: [emacs vi_normal vi_insert]
|
||||
event: [
|
||||
{ send: menu name: completion_menu }
|
||||
{ send: menunext }
|
||||
]
|
||||
}
|
||||
{
|
||||
name: completion_previous
|
||||
modifier: shift
|
||||
keycode: backtab
|
||||
mode: [emacs vi_normal vi_insert]
|
||||
event: { send: menuprevious }
|
||||
}
|
||||
]
|
||||
|
||||
source $"($nu.cache-dir)/carapace.nu"
|
||||
use $"($nu.cache-dir)/starship.nu"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user