2022-09-03 15:51:09 +03:00
|
|
|
local M = {}
|
|
|
|
|
2022-09-03 16:19:47 +03:00
|
|
|
Opts = {mason = {}, lspconfig = {automatic_installation = true}}
|
2022-09-03 15:51:09 +03:00
|
|
|
|
2022-09-03 16:19:47 +03:00
|
|
|
M.setup = function() require('mason').setup(Opts.mason) end
|
2022-09-03 15:51:09 +03:00
|
|
|
|
|
|
|
M.lspconfig_setup =
|
2022-09-03 16:19:47 +03:00
|
|
|
function() require('mason-lspconfig').setup(Opts.lspconfig) end
|
2022-09-03 15:51:09 +03:00
|
|
|
|
|
|
|
return M
|