dap-view
URL: https://github.com/igorlfs/nvim-dap-view/
Maintainers: Austin Horstman
Visualize debugging sessions in Neovim.
plugins.dap-view.enable
Whether to enable dap-view.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.dap-view.package
The dap-view package to use.
Type: package
Default:
pkgs.vimPlugins.nvim-dap-view
Declared by:
plugins.dap-view.autoLoad
Whether to automatically load dap-view when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.dap-view.callSetup
Whether to generate the standard require('dap-view').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.dap-view.settings
Options provided to the require('dap-view').setup function.
Type: lua value
Default:
{ }
Example:
{
winbar = {
controls = {
enabled = true;
};
};
windows = {
terminal = {
position = "right";
start_hidden = true;
};
};
}
Declared by: