1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00

feat: remove up down keybinds from blink nvim, update flake

This commit is contained in:
oddlama 2025-01-20 16:27:54 +01:00
parent edfb7ce18f
commit 4d2b186626
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 128 additions and 115 deletions

View file

@ -7,7 +7,21 @@
enable = true;
settings = {
keymap = {
preset = "enter";
preset = "none";
"<C-space>" = [
"show"
"show_documentation"
"hide_documentation"
];
"<C-e>" = [
"cancel"
"fallback"
];
"<CR>" = [
"accept"
"fallback"
];
"<A-Tab>" = [
"snippet_forward"
"fallback"
@ -24,6 +38,24 @@
"select_prev"
"fallback"
];
"<C-p>" = [
"select_prev"
"fallback"
];
"<C-n>" = [
"select_next"
"fallback"
];
"<S-Up>" = [
"scroll_documentation_up"
"fallback"
];
"<S-Down>" = [
"scroll_documentation_down"
"fallback"
];
};
appearance = {
@ -49,7 +81,10 @@
signature.enabled = true;
completion = {
list.selection = "auto_insert";
list.selection = {
preselect = false;
auto_insert = true;
};
documentation.auto_show = true;
};
};