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