1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/tests/test-sources/plugins/neotest/java.nix
2024-03-19 10:32:35 +01:00

18 lines
264 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.java = {
enable = true;
settings = {
ignore_wrapper = false;
};
};
};
};
};
}