mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
22 lines
351 B
Nix
22 lines
351 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.go = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
experimental = {
|
||
|
test_table = true;
|
||
|
};
|
||
|
args = ["-count=1" "-timeout=60s"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|