plugins.dap.extensions.dap-ui.enable

Whether to enable dap-ui.

Type: boolean

Default: false

Example: true

Declared by:

plugins.dap.extensions.dap-ui.package

The dap-ui package to use.

Type: package

Default: pkgs.vimPlugins.nvim-dap-ui

Declared by:

plugins.dap.extensions.dap-ui.expandLines

Expand current line to hover window if larger than window size.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.dap.extensions.dap-ui.extraOptions

These attributes will be added to the table parameter for the setup function. Typically, it can override NixVim’s default settings.

Type: attribute set of anything

Default: { }

Declared by:

plugins.dap.extensions.dap-ui.forceBuffers

Prevents other buffers being loaded into dap-ui windows.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.dap.extensions.dap-ui.layouts

List of layouts for dap-ui.

Type: null or (list of ((submodule) or raw lua code))

Default: null

Plugin default:

[
  {
    elements = [
      {
        id = "scopes";
        size = 0.25;
      }
      {
        id = "breakpoints";
        size = 0.25;
      }
      {
        id = "stacks";
        size = 0.25;
      }
      {
        id = "watches";
        size = 0.25;
      }
    ];
    position = "left";
    size = 40;
  }
  {
    elements = [
      {
        id = "repl";
        size = 0.5;
      }
      {
        id = "console";
        size = 0.5;
      }
    ];
    position = "bottom";
    size = 10;
  }
]

Declared by:

plugins.dap.extensions.dap-ui.selectWindow

A function which returns a window to be used for opening buffers such as a stack frame location.

Type: null or lua function string

Default: null

Plugin default: null

Declared by: