mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-09 09:41:19 +01:00
fix: fix mason_lspconfig import
Fix an error that was being caused because setup_handlers was being called from nvim-lspconfig instead of mason-lspconfig
This commit is contained in:
parent
f19e254a64
commit
cf6ae8ba40
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ return {
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
lspconfig.setup_handlers({
|
local mason_lspconfig = require("mason-lspconfig")
|
||||||
|
mason_lspconfig.setup_handlers({
|
||||||
function(server_name)
|
function(server_name)
|
||||||
default_handler(server_name, capabilities)
|
default_handler(server_name, capabilities)
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in a new issue