nix-community.nixvim/tests/test-sources/plugins/by-name/neotest/scala.nix
2025-03-04 15:28:43 +01:00

20 lines
329 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.scala = {
enable = true;
settings = {
args = [ "--no-color" ];
runner = "bloop";
framework = "utest";
};
};
};
};
};
}