Skip to content

Releases: mason-org/mason-lspconfig.nvim

v2.3.0

Choose a tag to compare

@williambotman williambotman released this 11 Jun 13:10
a567126

2.3.0 (2026-06-11)

Features

Bug Fixes

  • julials: ensure Julia environment is set before julia-lsp is run (#674) (2f8e8bb)

v2.2.0

Choose a tag to compare

@williambotman williambotman released this 23 Apr 15:14
0c2823e

2.2.0 (2026-04-23)

Features

  • nextflow_ls: add cmd override for Mason compatibility (#622) (1d77bd8)

v2.1.0

Choose a tag to compare

@williambotman williambotman released this 29 Jul 19:53
f2fa604

2.1.0 (2025-07-29)

Features

Bug Fixes

Performance Improvements

v2.0.0

Choose a tag to compare

@williamboman williamboman released this 06 May 20:58
v2.0.0

2.0.0 (2025-05-06)

The following new requirements are in place:

  • Neovim v0.11 or later
  • Mason v2
  • nvim-lspconfig v2

mason-lspconfig.nvim now assumes usage of the new vim.lsp.config configuration mechanism. If you still haven't migrated to Neovim's new LSP configuration API, you're recommended to keep using the latest v1 releases, or the v1.x branches, of both mason.nvim and mason-lspconfig.nvim.

See:


This release adds support for the new native LSP configuration mechanism (see vim.lsp.config) added in Neovim v0.11.
As a result, some existing features have been removed and a new automatic_enable feature has been added.
mason-lspconfig.nvim now tries to get out of the way as much as possible and instead allow users to entirely rely on
the new LSP configuration mechanism, while providing some convenient QoL features on top.

Note

Not all LSP configurations in nvim-lspconfig have been migrated to vim.lsp.config yet. These servers will have to be
manually set up (require("lspconfig").apex_ls.setup {}). A full list may be found
here.

Repository has been moved

The repository has been transferred to the mason-org organization. The new URL is
https://github.com/mason-org/mason-lspconfig.nvim. The previous URL will continue to function as a redirect to the new
URL but users are recommended to update to the new location.

New location for server mappings

Server mappings are now hosted via the registry instead of bundled with mason-lspconfig.nvim itself.

Removed Features

  • Remove the handlers setting and .setup_handlers() function. It has been replaced by the new native
    vim.lsp.config() API and a new automatic_enable setting.
  • Remove the automatic_installation setting. This feature is no longer compatible with the new native LSP
    configuration mechanism.

New Features

  • Add new automatic_enable setting to automatically vim.lsp.enable() installed servers. It is by default activated.

Example Setup

-- Configure a server via `vim.lsp.config()` or `{after/}lsp/lua_ls.lua`
vim.lsp.config('lua_ls', {
  settings = {
    Lua = {
      runtime = {
        version = 'LuaJIT',
      },
      diagnostics = {
        globals = {
          'vim',
          'require',
        },
      },
    },
  },
})

require("mason").setup()
-- Note: `nvim-lspconfig` needs to be in 'runtimepath' by the time you set up mason-lspconfig.nvim
require("mason-lspconfig").setup {
  ensure_installed = { "lua_ls" }
}

v2.0.0-rc.1

v2.0.0-rc.1 Pre-release
Pre-release

Choose a tag to compare

@williamboman williamboman released this 19 Feb 14:07
v2.0.0-rc.1

Features

  • feat!: update usage of deprecated mason.nvim APIs (a8f5e51)

v1.32.0

Choose a tag to compare

@williambotman williambotman released this 15 Feb 22:14
1a31f82

1.32.0 (2025-02-14)

Features

Bug Fixes

  • don't override psalm cmd (#477) (7446f47)
  • fix importing server config definitions from lspconfig (#468) (87638e7)
  • remove deprecated bufls, ruff_lsp, and typst_lsp mappings (#485) (057ddd1)
  • update required nvim version to >= 0.9.0 (#478) (b950110)

v1.31.0

Choose a tag to compare

@williambotman williambotman released this 08 Sep 16:05
25c1185

1.31.0 (2024-09-08)

Features

Bug Fixes

v1.30.0

Choose a tag to compare

@williambotman williambotman released this 04 Aug 23:16
62360f0

1.30.0 (2024-08-04)

Features

Bug Fixes

  • prefer vim.islist over vim.tbl_islist (#413) (a4caa0d)

v1.29.0

Choose a tag to compare

@williambotman williambotman released this 11 May 10:03
9ae570e

1.29.0 (2024-05-11)

Features

v1.28.0

Choose a tag to compare

@williambotman williambotman released this 23 Apr 10:23
1a14770

1.28.0 (2024-04-23)

Features

Performance Improvements

  • lazy-require some modules during config (#387) (1505b7a)