mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
22 lines
389 B
Nix
22 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
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|