mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
tests: Disable coq-nvim defaults on x86_64 darwin
This commit is contained in:
parent
50d865275d
commit
daa94bd6c2
1 changed files with 13 additions and 8 deletions
|
@ -4,16 +4,21 @@
|
|||
};
|
||||
|
||||
nixvim-defaults = {
|
||||
plugins.coq-nvim = {
|
||||
enable = true;
|
||||
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;
|
||||
settings = {
|
||||
xdg = true;
|
||||
auto_start = true;
|
||||
keymap.recommended = true;
|
||||
completion.always = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
artifacts = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue