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

dexter

URL: https://github.com/remoteoss/dexter

plugins.lsp.servers.dexter.enable

Whether to enable https://github.com/remoteoss/dexter dexter is a fast, full-featured Elixir LSP optimized for large codebases. dexter can be installed via Homebrew, mise, or asdf: Via Homebrew:

brew install remoteoss/tap/dexter

Via mise:

mise plugin add dexter https://github.com/remoteoss/dexter.git
mise install dexter

Via asdf:

asdf plugin add dexter https://github.com/remoteoss/dexter.git
asdf install dexter latest

dexter works without compilation by parsing source files directly, providing: - Fast indexing (cold index in ~11s on 57k-file codebases) - Go-to-definition with alias and delegate resolution - Find references across the codebase - Hover documentation and autocompletion - Rename functionality with automatic file renaming - Format on save via persistent Elixir process Configuration example:

vim.lsp.config('dexter', {
  init_options = {
    followDelegates = true,  -- jump through defdelegate to the target function
    -- stdlibPath = "",      -- override Elixir stdlib path (auto-detected)
    -- debug = false,        -- verbose logging to stderr (view with :LspLog)
  },
})
vim.lsp.enable('dexter')
```.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.lsp.servers.dexter.package

The dexter package to use.

Alternatively, dexter should be installed on your $PATH.

Type: null or package

Default:

pkgs.dexter

Declared by:

plugins.lsp.servers.dexter.packageFallback

When enabled, the language server package will be added to the end of the PATH (suffix) instead of the beginning (prefix).

This can be useful if you want local versions of the language server (e.g. from a devshell) to override the Nixvim version.

Type: boolean

Default:

false

Declared by:

plugins.lsp.servers.dexter.autostart

Whether to call vim.lsp.enable() for dexter.

Type: boolean

Default:

true

Example:

false

Declared by:

plugins.lsp.servers.dexter.cmd

A list where each entry corresponds to the blankspace delimited part of the command that launches the server.

The first entry is the binary used to run the language server. Additional entries are passed as arguments.

Type: null or (list of string)

Default: null when package is null, otherwise null

Declared by:

plugins.lsp.servers.dexter.extraOptions

Extra options for the dexter language server.

Type: attribute set of anything

Default:

{ }

Declared by:

plugins.lsp.servers.dexter.filetypes

Set of filetypes for which to attempt to resolve {root_dir}. May be empty, or server may specify a default value.

Type: null or (list of string)

Default:

null

Declared by:

plugins.lsp.servers.dexter.rootMarkers

A list of files that mark the root of the project/workspace.

Vim’s LSP will try to share the same language server instance for all buffers matching filetypes within the same project.

A new server instance is only spawned when opening a buffer with a different project root.

See :h lsp-config and :h vim.fs.root().

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

Default: null

Plugin default: null

Declared by:

plugins.lsp.servers.dexter.settings

The settings for this LSP.

Type: open submodule of attribute set of lua value

Default:

{ }

Example:

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

Declared by: