We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d8652 commit daa94bdCopy full SHA for daa94bd
tests/test-sources/plugins/completion/coq.nix
@@ -4,16 +4,21 @@
4
};
5
6
nixvim-defaults = {
7
- plugins.coq-nvim = {
8
- enable = true;
+ module =
+ { 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);
13
- settings = {
- xdg = true;
- auto_start = true;
- keymap.recommended = true;
14
- completion.always = true;
+ settings = {
15
+ xdg = true;
16
+ auto_start = true;
17
+ keymap.recommended = true;
18
+ completion.always = true;
19
+ };
20
21
- };
22
23
24
artifacts = {
0 commit comments