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:
parent
edfb7ce18f
commit
4d2b186626
2 changed files with 128 additions and 115 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue