feat(nixvim): add more plugins

This commit is contained in:
lightly-toasted 2025-08-03 20:50:23 +09:00
parent 6f3f9c7a6d
commit f3ec850f52
12 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
programs.nixvim.plugins.cmp = {
enable = true;
autoEnableSources = true;
settings.sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
];
};
}