mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
21 lines
327 B
Nix
21 lines
327 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.scala = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
args = ["--no-color"];
|
||
|
runner = "bloop";
|
||
|
framework = "utest";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|