nix-community.nixvim/tests/test-sources/plugins/by-name/coq-thirdparty/default.nix

25 lines
375 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";
}
2024-05-05 19:39:35 +02:00
{ src = "demo"; }
];
};
};
}