nix-community.nixvim/tests/test-sources/plugins/by-name/dap-go/default.nix
2025-01-27 10:08:09 -06:00

30 lines
587 B
Nix

{
empty = {
plugins.dap-go.enable = true;
};
default = {
plugins.dap-go = {
enable = true;
settings = {
dap_configurations = [
{
# Must be "go" or it will be ignored by the plugin
type = "go";
name = "Attach remote";
mode = "remote";
request = "attach";
}
];
delve = {
path = "dlv";
initialize_timeout_sec = 20;
port = "$\{port}";
args = [ ];
build_flags = "-tags=unit";
};
};
};
};
}