nix-community.nixvim/tests/test-sources/plugins/by-name/coq-thirdparty/default.nix
Austin Horstman f88402d5a7
plugins/coq-thirdparty: remove copilot
Pulled functionality into main
2024-09-15 10:22:23 -05:00

24 lines
375 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 = "demo"; }
];
};
};
}