mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 10:18:36 +02:00
plugins/neotest: move to by-name
This commit is contained in:
parent
0f83298f2c
commit
9d323f3ec7
26 changed files with 0 additions and 2 deletions
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
example = {
|
||||
plugins = {
|
||||
treesitter.enable = true;
|
||||
neotest = {
|
||||
enable = true;
|
||||
|
||||
adapters.foundry = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
foundryCommand = "forge test";
|
||||
foundryConfig = null;
|
||||
env = { };
|
||||
cwd.__raw = ''
|
||||
function ()
|
||||
return lib.files.match_root_pattern("foundry.toml")
|
||||
end
|
||||
'';
|
||||
filterDir.__raw = ''
|
||||
function(name)
|
||||
return (
|
||||
name ~= "node_modules"
|
||||
and name ~= "cache"
|
||||
and name ~= "out"
|
||||
and name ~= "artifacts"
|
||||
and name ~= "docs"
|
||||
and name ~= "doc"
|
||||
-- and name ~= "lib"
|
||||
)
|
||||
end
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue