mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 12:56:46 +00:00
refactor: Plugin.requires => Plugin.dependencies
This commit is contained in:
parent
0f5ceb9012
commit
7328e290ba
2 changed files with 5 additions and 5 deletions
|
@ -61,8 +61,8 @@ function M.load(plugins, reason, opts)
|
|||
Util.track({ plugin = plugin.name, start = reason.start })
|
||||
M.packadd(plugin, opts and opts.load_start)
|
||||
|
||||
if plugin.requires then
|
||||
M.load(plugin.requires, {})
|
||||
if plugin.dependencies then
|
||||
M.load(plugin.dependencies, {})
|
||||
end
|
||||
|
||||
if plugin.config then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue