nix-community.nixvim/tests/test-sources/plugins/completion/coq.nix
traxys 6484938d4b
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
2024-03-13 17:04:45 +01:00

25 lines
389 B
Nix

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