dap

URL: https://github.com/mfussenegger/nvim-dap/

Maintainers: Austin Horstman

plugins.dap.enable

Whether to enable nvim-dap.

Type: boolean

Default: false

Example: true

Declared by:

plugins.dap.package

The nvim-dap package to use.

Type: package

Default: pkgs.vimPlugins.nvim-dap

Declared by:

plugins.dap.autoLoad

Whether to automatically load nvim-dap when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.dap.settings

Options provided to the require('dap').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  callback = {
    __raw = ''
      function()
        print('nixvim')
      end
    '';
  };
  foo_bar = 42;
  hostname = "localhost:8080";
}

Declared by: