nix-community.nixvim/tests/test-sources/plugins/by-name/neotest/plenary.nix
2024-09-09 13:00:29 -05: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";
};
};
};
};
};
}