mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
24 lines
393 B
Nix
24 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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|