nvim/plugins/completion.nix

14 lines
279 B
Nix

{...}: {
vim.autocomplete.blink-cmp = {
enable = true;
mappings = {
complete = "<C-Space>";
close = "<C-e>";
scrollDocsUp = "<C-b>";
scrollDocsDown = "<C-f>";
confirm = "<CR>";
next = "<C-j>";
previous = "<C-k>";
};
};
}