mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-06 15:56:34 +00:00
fix(loader): when config=true
, pass nil
to setup()
. Fixes #208
This commit is contained in:
parent
021e54655f
commit
5f423b29c6
1 changed files with 5 additions and 1 deletions
|
@ -217,7 +217,11 @@ function M.config(plugin)
|
||||||
mods = vim.tbl_values(mods)
|
mods = vim.tbl_values(mods)
|
||||||
if #mods == 1 then
|
if #mods == 1 then
|
||||||
fn = function()
|
fn = function()
|
||||||
require(mods[1]).setup(plugin.config == true and {} or plugin.config)
|
local opts = plugin.config
|
||||||
|
if opts == true then
|
||||||
|
opts = nil
|
||||||
|
end
|
||||||
|
require(mods[1]).setup(opts)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
return Util.error(
|
return Util.error(
|
||||||
|
|
Loading…
Add table
Reference in a new issue