mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-03-10 09:27:25 +00:00
9 lines
121 B
Lua
9 lines
121 B
Lua
local M = {}
|
|
|
|
---@param opts? LazyVimConfig
|
|
function M.setup(opts)
|
|
require("lazyvim.config").setup(opts)
|
|
end
|
|
|
|
return M
|