1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

tests: disable test relying on the idris2 plugin (using deprecated lspconfig API)

This commit is contained in:
Gaetan Lepage 2025-10-01 00:10:19 +02:00 committed by Matt Sturgeon
parent cf808765c5
commit 523444bf99
2 changed files with 8 additions and 0 deletions

View file

@ -65,6 +65,10 @@ let
))
(lib.filterAttrs (server: _: !(lib.elem server renamed)))
];
# TODO 2025-10-01
# Calls `require("lspconfig")` which is deprecated, producing a warning
plugins.idris2.enable = false;
};
result = nixvimConfiguration.extendModules {

View file

@ -1,5 +1,9 @@
{
empty = {
# TODO 2025-10-01
# Calls `require("lspconfig")` which is deprecated, producing a warning
test.runNvim = false;
plugins.idris2.enable = true;
};
}