12.nixvim/tests/test-sources/plugins/by-name/blink-cmp-avante/default.nix
2025-12-29 10:09:22 +00:00

35 lines
629 B
Nix

{
empty = {
plugins = {
blink-cmp.enable = true;
blink-cmp-avante.enable = true;
};
};
example = {
plugins = {
blink-cmp-avante.enable = true;
blink-cmp = {
enable = true;
settings = {
sources = {
default = [
"avante"
"lsp"
"path"
"buffer"
];
providers = {
avante = {
module = "blink-cmp-avante";
name = "Avante";
opts = { };
};
};
};
};
};
};
};
}