mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
20 lines
299 B
Nix
20 lines
299 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.rust = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
args = ["--no-capture"];
|
||
|
dap_adapter = "lldb";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|