1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-11 04:56:06 +01:00
nixvim/tests/test-sources/plugins/neotest/rust.nix
2024-03-18 23:07:32 +01:00

19 lines
299 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.rust = {
enable = true;
settings = {
args = ["--no-capture"];
dap_adapter = "lldb";
};
};
};
};
};
}