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:
traxys 2024-03-13 17:04:45 +01:00 committed by GitHub
parent 8c3fa2e9ce
commit 6484938d4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 83 additions and 40 deletions

View 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;
};
};
}