nix-community.nixvim/tests/test-sources/plugins/dap/dap-go.nix
2024-05-05 22:00:40 +02:00

28 lines
553 B
Nix

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