mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
29 lines
484 B
Nix
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"; }
|
|
];
|
|
};
|
|
};
|
|
}
|