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

tests/plugins/lean: disable runNvim when LSP is enabed (using deprecated lspconfig API)

This commit is contained in:
Gaetan Lepage 2025-10-01 14:49:53 +02:00 committed by Matt Sturgeon
parent 3607c2dbd2
commit ba7e691a31

View file

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