mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 17:24:32 +02:00
Netman tests don't work if we try to effectively execute the config, so a new parameter to `checkConfig` is introduced, `dontRun` that allows to skip this phase.
15 lines
251 B
Nix
15 lines
251 B
Nix
{
|
|
empty = {
|
|
tests.dontRun = true;
|
|
plugins.netman.enable = true;
|
|
};
|
|
|
|
withNeotree = {
|
|
tests.dontRun = true;
|
|
plugins.neo-tree.enable = true;
|
|
plugins.netman = {
|
|
enable = true;
|
|
neoTreeIntegration = true;
|
|
};
|
|
};
|
|
}
|