mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +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 = {
|
nixvim-defaults = {
|
||||||
plugins.coq-nvim = {
|
module =
|
||||||
enable = true;
|
{ 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 = {
|
settings = {
|
||||||
xdg = true;
|
xdg = true;
|
||||||
auto_start = true;
|
auto_start = true;
|
||||||
keymap.recommended = true;
|
keymap.recommended = true;
|
||||||
completion.always = true;
|
completion.always = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
artifacts = {
|
artifacts = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue