Skip to content

Commit daa94bd

Browse files
committed
tests: Disable coq-nvim defaults on x86_64 darwin
1 parent 50d8652 commit daa94bd

File tree

1 file changed

+13
-8
lines changed
  • tests/test-sources/plugins/completion

1 file changed

+13
-8
lines changed

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

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,21 @@
44
};
55

66
nixvim-defaults = {
7-
plugins.coq-nvim = {
8-
enable = true;
7+
module =
8+
{ pkgs, ... }:
9+
{
10+
plugins.coq-nvim = {
11+
# It seems that the plugin has issues being executed in the same derivation
12+
enable = !(pkgs.stdenv.isDarwin && pkgs.stdenv.isx86_64);
913

10-
settings = {
11-
xdg = true;
12-
auto_start = true;
13-
keymap.recommended = true;
14-
completion.always = true;
14+
settings = {
15+
xdg = true;
16+
auto_start = true;
17+
keymap.recommended = true;
18+
completion.always = true;
19+
};
20+
};
1521
};
16-
};
1722
};
1823

1924
artifacts = {

0 commit comments

Comments
 (0)