mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
27 lines
512 B
Nix
27 lines
512 B
Nix
{
|
|
example = {
|
|
plugins = {
|
|
treesitter.enable = true;
|
|
neotest = {
|
|
enable = true;
|
|
|
|
adapters.jest = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
jestCommand = "npm test --";
|
|
jestConfigFile = "custom.jest.config.ts";
|
|
env = {
|
|
CI = true;
|
|
};
|
|
cwd.__raw = ''
|
|
function(path)
|
|
return vim.fn.getcwd()
|
|
end
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|