mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
8 lines
121 B
Lua
8 lines
121 B
Lua
local M = {}
|
|
|
|
---@param opts? LazyVimConfig
|
|
function M.setup(opts)
|
|
require("lazyvim.config").setup(opts)
|
|
end
|
|
|
|
return M
|