c3d4292dd2
together B)
14 lines
156 B
Lua
14 lines
156 B
Lua
local M = {}
|
|
|
|
function M.config()
|
|
local status_ok, mason = pcall(require, "mason")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
mason.setup {}
|
|
|
|
end
|
|
|
|
return M
|