mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
plugins/coq-thirdparty: Fix example & improve documentation (#1254)
This commit is contained in:
parent
01d7adb4ed
commit
4ab65ca95a
1 changed files with 8 additions and 5 deletions
|
@ -34,21 +34,24 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
description = "List of sources";
|
description = ''
|
||||||
|
List of sources.
|
||||||
|
Each source is a free-form type, so additional settings like `accept_key` may be specified even if they are not declared by nixvim.
|
||||||
|
'';
|
||||||
default = [];
|
default = [];
|
||||||
example = [
|
example = [
|
||||||
{
|
{
|
||||||
src = "nvimlua";
|
src = "nvimlua";
|
||||||
shortName = "nLUA";
|
short_name = "nLUA";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
src = "vimtex";
|
src = "vimtex";
|
||||||
shortName = "vTEX";
|
short_name = "vTEX";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
src = "copilot";
|
src = "copilot";
|
||||||
shortName = "COP";
|
short_name = "COP";
|
||||||
acceptKey = "<c-f>";
|
accept_key = "<c-f>";
|
||||||
}
|
}
|
||||||
{src = "demo";}
|
{src = "demo";}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue