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.layouts.*.position

Which side of editor to open layout on.

Type: one of “left”, “right”, “top”, “bottom”

Default: "left"

plugins.dap.extensions.dap-ui.layouts.*.size

Size of the layout in lines/columns.

Type: signed integer

Default: 10