nix-community.nixvim/tests/test-sources/plugins/by-name/coq-nvim/default.nix
Matt Sturgeon ad85cd760e
plugins/completion: move to by-name
- Move nvim-cmp to plugins/cmp
- Move other completion plugins to plugins/by-name
2024-09-09 11:50:40 +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;
};
};
}