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