chore: remove lsp.folders module

This commit is contained in:
Mariano Z. 2024-12-26 11:49:21 -03:00
parent 06489e1075
commit 2ffef85e64
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
17 changed files with 64 additions and 301 deletions

View file

@ -130,7 +130,7 @@ function M.config()
}
-- Load server-specific configuration if it exists
local ok, server_opts = pcall(require, "plugins.lsp.servers." .. server_name)
local ok, server_opts = pcall(require, "config.lsp." .. server_name)
if ok then
base_opts = vim.tbl_deep_extend("force", base_opts, server_opts)
end