mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +02:00
tests/image: re-enable as image-nvim has been fixed
https://github.com/NixOS/nixpkgs/pull/279564
This commit is contained in:
parent
2566593aee
commit
2db27bce4f
1 changed files with 4 additions and 8 deletions
|
@ -1,14 +1,10 @@
|
||||||
let
|
{
|
||||||
# As of 2024-01-08, lua5.1-magick is broken
|
|
||||||
# TODO: re-enable this test when fixed
|
|
||||||
enable = false;
|
|
||||||
in {
|
|
||||||
empty = {
|
empty = {
|
||||||
# At runtime, the plugin tries to get the size of the terminal which doesn't exist in the
|
# At runtime, the plugin tries to get the size of the terminal which doesn't exist in the
|
||||||
# headless environment.
|
# headless environment.
|
||||||
tests.dontRun = true;
|
tests.dontRun = true;
|
||||||
|
|
||||||
plugins.image.enable = enable;
|
plugins.image.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
|
@ -17,7 +13,7 @@ in {
|
||||||
tests.dontRun = true;
|
tests.dontRun = true;
|
||||||
|
|
||||||
plugins.image = {
|
plugins.image = {
|
||||||
inherit enable;
|
enable = true;
|
||||||
|
|
||||||
backend = "kitty";
|
backend = "kitty";
|
||||||
integrations = {
|
integrations = {
|
||||||
|
@ -61,7 +57,7 @@ in {
|
||||||
tests.dontRun = true;
|
tests.dontRun = true;
|
||||||
|
|
||||||
plugins.image = {
|
plugins.image = {
|
||||||
inherit enable;
|
enable = true;
|
||||||
backend = "ueberzug";
|
backend = "ueberzug";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue