This commit is contained in:
2026-07-04 05:01:54 +02:00
parent 524ee6e1ce
commit 12f0b1e422
116 changed files with 1355 additions and 231 deletions
+28
View File
@@ -0,0 +1,28 @@
{
pkgs,
...
}: {
vim = {
autocomplete = {
nvim-cmp = {
enable = true;
sources = {
nvim_lsp = "[LSP]";
path = "[PATH]";
nvim_lua = "[LUA]";
};
sourcePlugins = [
"cmp-nvim-lsp"
"cmp-path"
];
};
};
extraLuaFiles = [
(builtins.path {
path = ./raw/cmp.lua;
name = "my-lua-file";
})
];
};
}