You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
239 B
Lua

local M = {}
Opts = {mason = {}, lspconfig = {automatic_installation = true}}
M.setup = function() require('mason').setup(Opts.mason) end
M.lspconfig_setup =
function() require('mason-lspconfig').setup(Opts.lspconfig) end
return M