nix-community.nixvim/tests/test-sources/plugins/completion/coq-thirdparty.nix
2023-03-22 15:00:50 +01:00

29 lines
482 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";}
];
};
};
}