mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
21 lines
351 B
Nix
21 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"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|