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;
settings = {
keymap = {
preset = "default";
};
appearance = {
nerd_font_variant = "mono";
};
completion = {
documentation = {
auto_show = false;
};
};
signature = {
enabled = true;
preset = "enter";
"<Tab>" = [
"select_next"
"fallback"
];
"<S-Tab>" = [
"select_prev"
"fallback"
];
"<C-k>" = [
"show_documentation"
"hide_documentation"
];
};
appearance.nerd_font_variant = "mono";
completion.documentation.auto_show = false;
signature.enabled = true;
cmdline.completion.menu.auto_show = true;
};
};
}