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