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