mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
## Description
`mason-lspconfig` v2 made changes to conform with latest Neovim
`vim.lsp.config`/`vim.lsp.enable` API.
- Lock `mason` and `mason-lspconfig` to v1 versions for Neovim <0.11 and
latest HEAD for Neovim >=0.11.
- Change `:get_install_path()` method in LazyVim to use
`LazyVim.get_pkg_path()` and also update name references to new ones.
- Change `nvim-lspconfig` from `LazyFile` to `{ "BufReadPre",
"BufNewFile", "BufWritePre" }` for Neovim >=0.11, since on `BufReadPost`
the LSP would not attach on the first buffer. Previously the
`setup.handlers()` function from `mason-lspconfig` would take care of
that, but that has been removed on v2. I fail to think if there's a
better way to handle this.
Most of the changes in `/lsp/init.lua` are thanks to @williamboman
comment
[here](https://github.com/LazyVim/LazyVim/pull/6041#issuecomment-2857266471).
I've also seen that both `mason-lspconfig` and `rustaceanvim` now have
as minimum requirements Neovim >=0.11.
As such I would suggest, instead of all the conditional checks for
Neovim versions to create a stable release where we pin `mason` and
`mason-lspconfig` to v1 versions and then only incorporate William's
suggestions in a new release and mention in the README that users who
are on Neovim <0.11 should use the stable release where the plugin
versions are pinned to v1. Not sure how you want to tackle this, so this
is merely just a suggestion from my part.
Both #6041 and #6045 tackle only with the new name references and the
offending line that was causing the error, but don't take into
consideration the LSP servers configurations. `opts.setup` would not
execute on both, since that was handled by `setup_handlers()` function
in the past. I checked with Typescript lang and with those PRs there are
no Javascript settings in `vtsls` (by checking with
`:=LazyVim.opts("nvim-lspconfig").servers.vtsls`).
#6045 also tried to change the method `:get_install_pkg()` by using
`vim.fn.exepath`, but to my understanding that only returns the binary
path not the package installation path and that is later concatenated to
find other paths, which I believe is not correct.
PS: There are 2 commits, because my LazyVim fork was not up to date and
updated it and then merged the branch I had into a new branch. Sorry if
that causes any inconvenience.
<!-- Describe the big picture of your changes to communicate to the
maintainers
why we should accept this pull request. -->
## Related Issue(s)
Fixes #6039
<!--
If this PR fixes any issues, please link to the issue here.
- Fixes #<issue_number>
-->
## Screenshots
<!-- Add screenshots of the changes if applicable. -->
## Checklist
- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
---------
Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
Co-authored-by: William Boman <william@redwill.se>
Co-authored-by: Luis Durão <kpvrzlzzx@mozmail.com>
292 lines
9.9 KiB
Lua
292 lines
9.9 KiB
Lua
return {
|
|
-- lspconfig
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
event = { "BufReadPre", "BufNewFile", "BufWritePre" },
|
|
dependencies = {
|
|
"mason.nvim",
|
|
{ "mason-org/mason-lspconfig.nvim", config = function() end },
|
|
},
|
|
opts = function()
|
|
---@class PluginLspOpts
|
|
local ret = {
|
|
-- options for vim.diagnostic.config()
|
|
---@type vim.diagnostic.Opts
|
|
diagnostics = {
|
|
underline = true,
|
|
update_in_insert = false,
|
|
virtual_text = {
|
|
spacing = 4,
|
|
source = "if_many",
|
|
prefix = "●",
|
|
-- this will set set the prefix to a function that returns the diagnostics icon based on the severity
|
|
-- this only works on a recent 0.10.0 build. Will be set to "●" when not supported
|
|
-- prefix = "icons",
|
|
},
|
|
severity_sort = true,
|
|
signs = {
|
|
text = {
|
|
[vim.diagnostic.severity.ERROR] = LazyVim.config.icons.diagnostics.Error,
|
|
[vim.diagnostic.severity.WARN] = LazyVim.config.icons.diagnostics.Warn,
|
|
[vim.diagnostic.severity.HINT] = LazyVim.config.icons.diagnostics.Hint,
|
|
[vim.diagnostic.severity.INFO] = LazyVim.config.icons.diagnostics.Info,
|
|
},
|
|
},
|
|
},
|
|
-- Enable this to enable the builtin LSP inlay hints on Neovim >= 0.10.0
|
|
-- Be aware that you also will need to properly configure your LSP server to
|
|
-- provide the inlay hints.
|
|
inlay_hints = {
|
|
enabled = true,
|
|
exclude = { "vue" }, -- filetypes for which you don't want to enable inlay hints
|
|
},
|
|
-- Enable this to enable the builtin LSP code lenses on Neovim >= 0.10.0
|
|
-- Be aware that you also will need to properly configure your LSP server to
|
|
-- provide the code lenses.
|
|
codelens = {
|
|
enabled = false,
|
|
},
|
|
-- add any global capabilities here
|
|
capabilities = {
|
|
workspace = {
|
|
fileOperations = {
|
|
didRename = true,
|
|
willRename = true,
|
|
},
|
|
},
|
|
},
|
|
-- options for vim.lsp.buf.format
|
|
-- `bufnr` and `filter` is handled by the LazyVim formatter,
|
|
-- but can be also overridden when specified
|
|
format = {
|
|
formatting_options = nil,
|
|
timeout_ms = nil,
|
|
},
|
|
-- LSP Server Settings
|
|
---@type lspconfig.options
|
|
servers = {
|
|
lua_ls = {
|
|
-- mason = false, -- set to false if you don't want this server to be installed with mason
|
|
-- Use this to add any additional keymaps
|
|
-- for specific lsp servers
|
|
-- ---@type LazyKeysSpec[]
|
|
-- keys = {},
|
|
settings = {
|
|
Lua = {
|
|
workspace = {
|
|
checkThirdParty = false,
|
|
},
|
|
codeLens = {
|
|
enable = true,
|
|
},
|
|
completion = {
|
|
callSnippet = "Replace",
|
|
},
|
|
doc = {
|
|
privateName = { "^_" },
|
|
},
|
|
hint = {
|
|
enable = true,
|
|
setType = false,
|
|
paramType = true,
|
|
paramName = "Disable",
|
|
semicolon = "Disable",
|
|
arrayIndex = "Disable",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
-- you can do any additional lsp server setup here
|
|
-- return true if you don't want this server to be setup with lspconfig
|
|
---@type table<string, fun(server:string, opts:_.lspconfig.options):boolean?>
|
|
setup = {
|
|
-- example to setup with typescript.nvim
|
|
-- tsserver = function(_, opts)
|
|
-- require("typescript").setup({ server = opts })
|
|
-- return true
|
|
-- end,
|
|
-- Specify * to use this function as a fallback for any server
|
|
-- ["*"] = function(server, opts) end,
|
|
},
|
|
}
|
|
return ret
|
|
end,
|
|
---@param opts PluginLspOpts
|
|
config = function(_, opts)
|
|
-- setup autoformat
|
|
LazyVim.format.register(LazyVim.lsp.formatter())
|
|
|
|
-- setup keymaps
|
|
LazyVim.lsp.on_attach(function(client, buffer)
|
|
require("lazyvim.plugins.lsp.keymaps").on_attach(client, buffer)
|
|
end)
|
|
|
|
LazyVim.lsp.setup()
|
|
LazyVim.lsp.on_dynamic_capability(require("lazyvim.plugins.lsp.keymaps").on_attach)
|
|
|
|
-- inlay hints
|
|
if opts.inlay_hints.enabled then
|
|
LazyVim.lsp.on_supports_method("textDocument/inlayHint", function(client, buffer)
|
|
if
|
|
vim.api.nvim_buf_is_valid(buffer)
|
|
and vim.bo[buffer].buftype == ""
|
|
and not vim.tbl_contains(opts.inlay_hints.exclude, vim.bo[buffer].filetype)
|
|
then
|
|
vim.lsp.inlay_hint.enable(true, { bufnr = buffer })
|
|
end
|
|
end)
|
|
end
|
|
|
|
-- code lens
|
|
if opts.codelens.enabled and vim.lsp.codelens then
|
|
LazyVim.lsp.on_supports_method("textDocument/codeLens", function(client, buffer)
|
|
vim.lsp.codelens.refresh()
|
|
vim.api.nvim_create_autocmd({ "BufEnter", "CursorHold", "InsertLeave" }, {
|
|
buffer = buffer,
|
|
callback = vim.lsp.codelens.refresh,
|
|
})
|
|
end)
|
|
end
|
|
|
|
if type(opts.diagnostics.virtual_text) == "table" and opts.diagnostics.virtual_text.prefix == "icons" then
|
|
opts.diagnostics.virtual_text.prefix = function(diagnostic)
|
|
local icons = LazyVim.config.icons.diagnostics
|
|
for d, icon in pairs(icons) do
|
|
if diagnostic.severity == vim.diagnostic.severity[d:upper()] then
|
|
return icon
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
vim.diagnostic.config(vim.deepcopy(opts.diagnostics))
|
|
|
|
local servers = opts.servers
|
|
local has_cmp, cmp_nvim_lsp = pcall(require, "cmp_nvim_lsp")
|
|
local has_blink, blink = pcall(require, "blink.cmp")
|
|
local capabilities = vim.tbl_deep_extend(
|
|
"force",
|
|
{},
|
|
vim.lsp.protocol.make_client_capabilities(),
|
|
has_cmp and cmp_nvim_lsp.default_capabilities() or {},
|
|
has_blink and blink.get_lsp_capabilities() or {},
|
|
opts.capabilities or {}
|
|
)
|
|
|
|
-- get all the servers that are available through mason-lspconfig
|
|
local have_mason, mlsp = pcall(require, "mason-lspconfig")
|
|
local all_mslp_servers = {}
|
|
all_mslp_servers = vim.tbl_keys(require("mason-lspconfig.mappings").get_mason_map().lspconfig_to_package)
|
|
|
|
local exclude_automatic_enable = {} ---@type string[]
|
|
|
|
local function configure(server)
|
|
local server_opts = vim.tbl_deep_extend("force", {
|
|
capabilities = vim.deepcopy(capabilities),
|
|
}, servers[server] or {})
|
|
|
|
if opts.setup[server] then
|
|
if opts.setup[server](server, server_opts) then
|
|
return true
|
|
end
|
|
elseif opts.setup["*"] then
|
|
if opts.setup["*"](server, server_opts) then
|
|
return true
|
|
end
|
|
end
|
|
vim.lsp.config(server, server_opts)
|
|
|
|
-- manually enable if mason=false or if this is a server that cannot be installed with mason-lspconfig
|
|
if server_opts.mason == false or not vim.tbl_contains(all_mslp_servers, server) then
|
|
vim.lsp.enable(server)
|
|
return true
|
|
end
|
|
return false
|
|
end
|
|
|
|
local ensure_installed = {} ---@type string[]
|
|
for server, server_opts in pairs(servers) do
|
|
if server_opts then
|
|
server_opts = server_opts == true and {} or server_opts
|
|
if server_opts.enabled ~= false then
|
|
-- run manual setup if mason=false or if this is a server that cannot be installed with mason-lspconfig
|
|
if configure(server) then
|
|
exclude_automatic_enable[#exclude_automatic_enable + 1] = server
|
|
else
|
|
ensure_installed[#ensure_installed + 1] = server
|
|
end
|
|
else
|
|
exclude_automatic_enable[#exclude_automatic_enable + 1] = server
|
|
end
|
|
end
|
|
end
|
|
|
|
if have_mason then
|
|
local setup_config = {
|
|
ensure_installed = vim.tbl_deep_extend(
|
|
"force",
|
|
ensure_installed,
|
|
LazyVim.opts("mason-lspconfig.nvim").ensure_installed or {}
|
|
),
|
|
}
|
|
|
|
setup_config.automatic_enable = {
|
|
exclude = exclude_automatic_enable,
|
|
}
|
|
|
|
mlsp.setup(setup_config)
|
|
end
|
|
|
|
if LazyVim.lsp.is_enabled("denols") and LazyVim.lsp.is_enabled("vtsls") then
|
|
local is_deno = require("lspconfig.util").root_pattern("deno.json", "deno.jsonc")
|
|
LazyVim.lsp.disable("vtsls", is_deno)
|
|
LazyVim.lsp.disable("denols", function(root_dir, config)
|
|
if not is_deno(root_dir) then
|
|
config.settings.deno.enable = false
|
|
end
|
|
return false
|
|
end)
|
|
end
|
|
end,
|
|
},
|
|
|
|
-- cmdline tools and lsp servers
|
|
{
|
|
|
|
"mason-org/mason.nvim",
|
|
cmd = "Mason",
|
|
keys = { { "<leader>cm", "<cmd>Mason<cr>", desc = "Mason" } },
|
|
build = ":MasonUpdate",
|
|
opts_extend = { "ensure_installed" },
|
|
opts = {
|
|
ensure_installed = {
|
|
"stylua",
|
|
"shfmt",
|
|
},
|
|
},
|
|
---@param opts MasonSettings | {ensure_installed: string[]}
|
|
config = function(_, opts)
|
|
require("mason").setup(opts)
|
|
local mr = require("mason-registry")
|
|
mr:on("package:install:success", function()
|
|
vim.defer_fn(function()
|
|
-- trigger FileType event to possibly load this newly installed LSP server
|
|
require("lazy.core.handler.event").trigger({
|
|
event = "FileType",
|
|
buf = vim.api.nvim_get_current_buf(),
|
|
})
|
|
end, 100)
|
|
end)
|
|
|
|
mr.refresh(function()
|
|
for _, tool in ipairs(opts.ensure_installed) do
|
|
local p = mr.get_package(tool)
|
|
if not p:is_installed() then
|
|
p:install()
|
|
end
|
|
end
|
|
end)
|
|
end,
|
|
},
|
|
}
|