init.lua/lua/utils.lua(view raw)
1 2 3 4 5 6 7 8 9 10 11
local M = {} function M.get_setup(path) return string.format("require[[%s]].setup()", path) end function M.get_config(path) return string.format("require[[%s]]", path) end return M