first commit
This commit is contained in:
@@ -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";
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user