1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-10 02:51:07 +01:00

plugins/neotest: add more adapters

This commit is contained in:
Gaetan Lepage 2024-03-18 14:43:48 +01:00 committed by Gaétan Lepage
parent 975f1ca526
commit 5004178c0c
6 changed files with 109 additions and 2 deletions

View file

@ -0,0 +1,18 @@
{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.java = {
enable = true;
settings = {
ignore_wrapper = false;
};
};
};
};
};
}