mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
27 lines
488 B
Nix
27 lines
488 B
Nix
|
{
|
||
|
example = {
|
||
|
plugins = {
|
||
|
treesitter.enable = true;
|
||
|
neotest = {
|
||
|
enable = true;
|
||
|
|
||
|
adapters.golang = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
dap_go_enabled = true;
|
||
|
testify_enabled = false;
|
||
|
warn_test_name_dupes = true;
|
||
|
warn_test_not_executed = true;
|
||
|
args = [
|
||
|
"-v"
|
||
|
"-race"
|
||
|
"-count=1"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|