dap-go
URL: https://github.com/leoluz/nvim-dap-go/
Maintainers: Austin Horstman
An extension for nvim-dap providing configurations for launching go debugger.
plugins.dap-go.enable
Whether to enable dap-go.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.dap-go.package
The dap-go package to use.
Type: package
Default:
pkgs.vimPlugins.nvim-dap-go
Declared by:
plugins.dap-go.autoLoad
Whether to automatically load dap-go when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.dap-go.callSetup
Whether to generate the standard require('dap-go').setup(...) call for this plugin.
Explicitly set to true to force calling .setup().
Caution
A forced call can emit a duplicate or invalid setup. Some plugins generate custom setup code or have no real
dap-goLua module.
Type: boolean
Default:
false
Declared by:
plugins.dap-go.settings
Options provided to the require('dap-go').setup function.
Type: lua value
Default:
{ }
Example:
{
callback = lib.nixvim.mkRaw ''
function()
print('nixvim')
end
'';
foo_bar = 42;
hostname = "localhost:8080";
}
Declared by: