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

21 lines
327 B
Nix
Raw Normal View History

2023-11-22 09:38:52 +01:00
{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.scala = {
enable = true;
settings = {
args = ["--no-color"];
runner = "bloop";
framework = "utest";
};
};
};
};
};
}