mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02: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
|