mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-05 15:30:08 +00:00
fix(loader): dont show error of missing plugins if they are disabled
This commit is contained in:
parent
81cb352fe6
commit
09fd8fabd2
1 changed files with 2 additions and 0 deletions
|
@ -162,6 +162,8 @@ function M.load(plugins, reason)
|
|||
if type(plugin) == "string" then
|
||||
if Config.plugins[plugin] then
|
||||
plugin = Config.plugins[plugin]
|
||||
elseif Config.spec.disabled[plugin] then
|
||||
plugin = nil
|
||||
else
|
||||
Util.error("Plugin " .. plugin .. " not found")
|
||||
plugin = nil
|
||||
|
|
Loading…
Add table
Reference in a new issue