mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
23 lines
389 B
Nix
23 lines
389 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.vitest = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
filter_dir.__raw = ''
|
||
|
function(name, rel_path, root)
|
||
|
return name ~= "node_modules"
|
||
|
end
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|