mirror of https://github.com/folke/lazy.nvim.git
fix(install): make sure to setup loaders before attempting install so colorscheme can load. Fixes #122
This commit is contained in:
parent
e5dcc87149
commit
7b9b476a62
|
@ -11,23 +11,6 @@ M.init_done = false
|
||||||
M.disabled_rtp_plugins = { packer_compiled = true }
|
M.disabled_rtp_plugins = { packer_compiled = true }
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
-- install missing plugins
|
|
||||||
if Config.options.install.missing then
|
|
||||||
Util.track("install")
|
|
||||||
for _, plugin in pairs(Config.plugins) do
|
|
||||||
if not plugin._.installed then
|
|
||||||
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
|
|
||||||
if pcall(vim.cmd.colorscheme, colorscheme) then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
require("lazy.manage").install({ wait = true })
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
Util.track()
|
|
||||||
end
|
|
||||||
|
|
||||||
-- setup handlers
|
-- setup handlers
|
||||||
Util.track("handlers")
|
Util.track("handlers")
|
||||||
Handler.setup()
|
Handler.setup()
|
||||||
|
@ -45,6 +28,23 @@ function M.setup()
|
||||||
|
|
||||||
-- autoload opt plugins
|
-- autoload opt plugins
|
||||||
table.insert(package.loaders, M.autoload)
|
table.insert(package.loaders, M.autoload)
|
||||||
|
|
||||||
|
-- install missing plugins
|
||||||
|
if Config.options.install.missing then
|
||||||
|
Util.track("install")
|
||||||
|
for _, plugin in pairs(Config.plugins) do
|
||||||
|
if not plugin._.installed then
|
||||||
|
for _, colorscheme in ipairs(Config.options.install.colorscheme) do
|
||||||
|
if pcall(vim.cmd.colorscheme, colorscheme) then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
require("lazy.manage").install({ wait = true })
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Util.track()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Startup sequence
|
-- Startup sequence
|
||||||
|
|
Loading…
Reference in New Issue