nix-community.nixvim/tests/test-sources/plugins/neotest/plenary.nix

19 lines
281 B
Nix
Raw Normal View History

2023-11-22 09:38:52 +01:00
{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.plenary = {
enable = true;
settings = {
min_init = "./path/to/test_init.lua";
};
};
};
};
};
}