feat(config)!: LazyVim can now be configured like any other plugin with {"LazyVim/LazyVim", opts = ... }. config.settings is deprecated

This commit is contained in:
Folke Lemaitre
2023-01-10 10:07:19 +01:00
parent aafc033927
commit 36c84f47c9
7 changed files with 113 additions and 57 deletions

8
lua/lazyvim/init.lua Normal file
View File

@ -0,0 +1,8 @@
local M = {}
---@param opts? LazyVimConfig
function M.setup(opts)
require("lazyvim.config").setup(opts)
end
return M