From 387c19eb8db3d61db13e4fb37ddcad05b0edb049 Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Thu, 12 Sep 2024 19:04:22 +0200 Subject: [PATCH] neovim: Disable image/diagram in tests --- neovim/pkg.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/neovim/pkg.nix b/neovim/pkg.nix index 25ca210..02bf932 100644 --- a/neovim/pkg.nix +++ b/neovim/pkg.nix @@ -46,7 +46,14 @@ }; checks.launch = inputs.nixvim.lib.${system}.check.mkTestDerivationFromNvim { - nvim = self'.packages.neovimTraxys.extend { test.checkWarnings = false; }; + nvim = self'.packages.neovimTraxys.extend ( + { lib, ... }: + { + test.checkWarnings = false; + plugins.image.enable = lib.mkForce false; + plugins.diagram-nvim.enable = lib.mkForce false; + } + ); name = "Neovim configuration"; }; };