c3d4292dd2
together B)
17 lines
271 B
Lua
17 lines
271 B
Lua
local M = {}
|
|
|
|
function M.config()
|
|
local status_ok, mason_lspconfig = pcall(require, "mason-lspconfig")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
mason_lspconfig.setup({
|
|
ensure_installed = {
|
|
},
|
|
automatic_installation = false,
|
|
})
|
|
end
|
|
|
|
return M
|