mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-15 03:34:31 +02:00
plugins/coq: Switch to mkNeovimPlugin (#1256)
* plugins/coq: Switch to mkNeovimPlugin This allows the user to define additional options unpackaged by nixvim. No new options were defined, nor any old option was deleted. Fixes #1114
This commit is contained in:
parent
8c3fa2e9ce
commit
6484938d4b
2 changed files with 83 additions and 40 deletions
25
tests/test-sources/plugins/completion/coq.nix
Normal file
25
tests/test-sources/plugins/completion/coq.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.coq-nvim.enable = true;
|
||||
};
|
||||
|
||||
nixvim-defaults = {
|
||||
plugins.coq-nvim = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
xdg = true;
|
||||
auto_start = true;
|
||||
keymap.recommended = true;
|
||||
completion.always = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
artifacts = {
|
||||
plugins.coq-nvim = {
|
||||
enable = true;
|
||||
installArtifacts = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue