plugins.lsp.keymaps.diagnostic

Mappings for vim.diagnostic.<action> functions to be added when an LSP is attached.

Type: attribute set of (string or (attribute set))

Default: { }

Example:

{
  "<leader>j" = "goto_next";
  "<leader>k" = "goto_prev";
}

Declared by:

plugins.lsp.keymaps.lspBuf

Mappings for vim.lsp.buf.<action> functions to be added when an LSP it attached.

Type: attribute set of (string or (attribute set))

Default: { }

Example:

{
  K = "hover";
  gD = "references";
  gd = "definition";
  gi = "implementation";
  gt = "type_definition";
}

Declared by:

plugins.lsp.keymaps.silent

Whether nvim-lsp keymaps should be silent

Type: boolean

Default: false

Declared by: