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

20 lines
332 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.dart = {
enable = true;
settings = {
command = "flutter";
use_lsp = true;
custom_test_method_names = [];
};
};
};
};
};
}