nix-community.nixvim/tests/test-sources/plugins/neotest/plenary.nix
2024-03-18 23:07:32 +01:00

18 lines
281 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.plenary = {
enable = true;
settings = {
min_init = "./path/to/test_init.lua";
};
};
};
};
};
}