flake/nixos/nvim/plugins/cmp.nix

16 lines
299 B
Nix

{
programs.nixvim = {
plugins = {
cmp = {
enable = true;
settings.sources = [
{ name = "nvim_lsp"; }
{ name = "buffer"; }
{ name = "path"; }
];
};
copilot-lua.enable = true;
copilot-cmp.enable = true;
};
};
}