nix-community.nixvim/tests/test-sources/plugins/completion/coq-thirdparty.nix
2024-05-05 22:00:40 +02:00

29 lines
484 B
Nix

{
# 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>";
}
{ src = "demo"; }
];
};
};
}