nix-community.nixvim/tests/test-sources/plugins/completion/coq-thirdparty.nix

30 lines
484 B
Nix
Raw Normal View History

{
# Empty configuration
empty = {
plugins.coq-thirdparty.enable = true;
};
example = {
plugins.coq-thirdparty = {
enable = true;
sources = [
{
src = "nvimlua";
short_name = "nLUA";
}
{
src = "vimtex";
short_name = "vTEX";
}
{
src = "copilot";
short_name = "COP";
accept_key = "<c-f>";
}
2024-05-05 19:39:35 +02:00
{ src = "demo"; }
];
};
};
}