mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
neovim: Disable image/diagram in tests
This commit is contained in:
parent
dd2de99e8c
commit
387c19eb8d
1 changed files with 8 additions and 1 deletions
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue