nix-community.nixvim/tests/test-sources/plugins/completion/coq.nix
Matt Sturgeon 123a55ed6f
tests: remove special treatment of module
Since we no longer need to extract `tests.dontRun` from an attrset, we
no longer need the "special" `module` attr.
2024-08-20 01:07:21 +01:00

28 lines
559 B
Nix

{
empty = {
plugins.coq-nvim.enable = true;
};
nixvim-defaults =
{ pkgs, ... }:
{
plugins.coq-nvim = {
# It seems that the plugin has issues being executed in the same derivation
enable = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64);
settings = {
xdg = true;
auto_start = true;
keymap.recommended = true;
completion.always = true;
};
};
};
artifacts = {
plugins.coq-nvim = {
enable = true;
installArtifacts = true;
};
};
}