nichts/modules/editors/nvf/plugins/settings/autocomplete.nix
2024-07-06 17:14:45 +02:00

18 lines
396 B
Nix

{config, ...}: let
inherit (config.modules.other.system) username;
in {
programs.neovim-flake.settings.vim = {
autocomplete = {
enable = true;
type = "nvim-cmp";
mappings = {
# close = "<C-e>";
confirm = "<C-y>";
next = "<C-n>";
previous = "<C-p>";
scrollDocsDown = "<C-j>";
scrollDocsUp = "<C-k>";
};
};
};
}