Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

lsp-progress

URL: https://linrongbin16.github.io/lsp-progress.nvim/

Maintainers: Austin Horstman


A performant LSP progress status for Neovim.

plugins.lsp-progress.enable

Whether to enable lsp-progress.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.lsp-progress.package

The lsp-progress package to use.

Type: package

Default:

pkgs.vimPlugins.lsp-progress-nvim

Declared by:

plugins.lsp-progress.autoLoad

Whether to automatically load lsp-progress when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.lsp-progress.callSetup

Whether to generate the standard require('lsp-progress').setup(...) call for this plugin.

By default, this follows the plugin’s built-in behavior. Set this to false to disable the generated setup call, or to true to force it even when the plugin would only call it conditionally.

Type: null or boolean

Default:

null

Declared by:

plugins.lsp-progress.settings

Options provided to the require('lsp-progress').setup function.

Type: lua value

Default:

{ }

Example:

{
  decay = 1200;
  format = lib.nixvim.mkRaw ''
  function(client_messages)
    return #client_messages > 0 and table.concat(client_messages, " ") or ""
  end
'';
  max_size = 80;
}

Declared by: