nix-community.nixvim/tests/test-sources/plugins/completion/coq.nix

30 lines
605 B
Nix

{
empty = {
plugins.coq-nvim.enable = true;
};
nixvim-defaults = {
module =
{ 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;
};
};
}