fix(lsp): update location for lspconfig server configurations

This commit is contained in:
2024-10-25 13:32:49 +02:00
parent 36bc7050b0
commit 059c3df943
+1 -1
View File
@@ -309,7 +309,7 @@ function M.new(name, config)
if not M.validate(name, config) then if not M.validate(name, config) then
return return
end end
local ok, resp = pcall(require, "lspconfig.server_configurations." .. name) local ok, resp = pcall(require, "lspconfig.configs." .. name)
if not ok then if not ok then
utils.err(("Server with name %s does not exist in lspconfig"):format(name)) utils.err(("Server with name %s does not exist in lspconfig"):format(name))
return return