mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
plugins/coq-thirdparty: init + tests (#282)
This commit is contained in:
parent
db5061b4db
commit
2550c919a5
3 changed files with 95 additions and 0 deletions
29
tests/test-sources/plugins/completion/coq-thirdparty.nix
Normal file
29
tests/test-sources/plugins/completion/coq-thirdparty.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
# 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";}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue