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