mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
30 lines
587 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|