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