lazy.nvim/lua/lazy/init.lua

79 lines
1.8 KiB
Lua
Raw Normal View History

2022-11-21 05:33:47 +08:00
local M = {}
---@param opts? LazyConfig
function M.setup(opts)
local module_start = vim.loop.hrtime()
require("lazy.core.module").setup()
local Util = require("lazy.core.util")
local Config = require("lazy.core.config")
local Loader = require("lazy.core.loader")
local Handler = require("lazy.core.handler")
local Plugin = require("lazy.core.plugin")
2022-11-21 05:33:47 +08:00
Util.track("module", vim.loop.hrtime() - module_start)
Util.track("setup")
2022-11-21 05:33:47 +08:00
Util.track("config")
2022-11-21 05:34:55 +08:00
Config.setup(opts)
Util.track()
2022-11-21 05:33:47 +08:00
Plugin.load()
2022-11-21 05:33:47 +08:00
if Config.options.install_missing then
Util.track("install")
for _, plugin in pairs(Config.plugins) do
if not plugin._.installed then
vim.cmd("do User LazyInstallPre")
require("lazy.manage").install({ wait = true, show = Config.options.interactive })
break
end
2022-11-21 05:34:55 +08:00
end
Util.track()
2022-11-21 05:34:55 +08:00
end
2022-11-21 05:33:47 +08:00
Util.track("handlers")
Handler.setup()
2022-11-21 05:34:55 +08:00
Util.track()
2022-11-21 05:33:47 +08:00
local lazy_delta = vim.loop.hrtime() - module_start
Util.track() -- end setup
2022-11-21 05:34:55 +08:00
Loader.init_plugins()
if Config.plugins["lazy.nvim"] then
Config.plugins["lazy.nvim"]._.loaded.time = lazy_delta
end
2022-11-21 05:33:47 +08:00
2022-11-21 05:34:55 +08:00
vim.cmd("do User LazyDone")
2022-11-21 05:33:47 +08:00
end
function M.stats()
local ret = { count = 0, loaded = 0 }
for _, plugin in pairs(require("lazy.core.config").plugins) do
2022-11-21 05:34:55 +08:00
ret.count = ret.count + 1
if plugin._.loaded then
2022-11-21 05:34:55 +08:00
ret.loaded = ret.loaded + 1
end
end
return ret
2022-11-21 05:33:47 +08:00
end
2022-11-29 19:49:15 +08:00
function M.bootstrap()
local lazypath = vim.fn.stdpath("data") .. "/site/pack/lazy/start/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
vim.opt.runtimepath:append(lazypath)
end
end
2022-11-21 05:33:47 +08:00
return M