mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
28 lines
490 B
Nix
28 lines
490 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.minitest = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
test_cmd.__raw = ''
|
||
|
function()
|
||
|
return vim.tbl_flatten({
|
||
|
"bundle",
|
||
|
"exec",
|
||
|
"rails",
|
||
|
"test",
|
||
|
})
|
||
|
end
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|