uses tab based completion

This commit is contained in:
Dennis Schoepf 2026-02-04 22:19:01 +01:00
parent 6543d4a7f3
commit c4ff26e042

View file

@ -3,19 +3,24 @@
enable = true; enable = true;
settings = { settings = {
keymap = { keymap = {
preset = "default"; preset = "enter";
}; "<Tab>" = [
appearance = { "select_next"
nerd_font_variant = "mono"; "fallback"
}; ];
completion = { "<S-Tab>" = [
documentation = { "select_prev"
auto_show = false; "fallback"
}; ];
}; "<C-k>" = [
signature = { "show_documentation"
enabled = true; "hide_documentation"
];
}; };
appearance.nerd_font_variant = "mono";
completion.documentation.auto_show = false;
signature.enabled = true;
cmdline.completion.menu.auto_show = true;
}; };
}; };
} }