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.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: