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