osbm-nvim/plugins/cmp.nix
2025-03-15 23:27:45 +03:00

16 lines
No EOL
310 B
Nix

{
plugins.cmp = {
autoEnableSources = true;
settings = {
sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
{ name = "cmdline"; }
];
mapping = {
"<CR>" = "cmp.mapping.confirm({ select = true })";
};
};
};
}