lazy.nvim/lua/lazy/init.lua

73 lines
1.7 KiB
Lua
Raw Normal View History

2022-11-21 05:33:47 +08:00
local M = {}
---@param spec LazySpec Should be a module name to load, or a plugin spec
2022-11-21 05:33:47 +08:00
---@param opts? LazyConfig
function M.setup(spec, opts)
2022-12-02 17:02:34 +08:00
if not vim.go.loadplugins then
return
end
local start = vim.loop.hrtime()
2022-12-01 23:37:50 +08:00
-- load module cache before anything else
require("lazy.core.module").setup()
local Util = require("lazy.core.util")
local Config = require("lazy.core.config")
local Loader = require("lazy.core.loader")
local Plugin = require("lazy.core.plugin")
2022-11-21 05:33:47 +08:00
2022-12-01 23:37:50 +08:00
Util.track({ plugin = "lazy.nvim" }) -- setup start
Util.track("module", vim.loop.hrtime() - start)
2022-12-01 23:37:50 +08:00
-- load config
Util.track("config")
Config.setup(spec, opts)
2022-11-21 05:34:55 +08:00
Util.track()
2022-11-21 05:33:47 +08:00
2022-12-01 23:37:50 +08:00
-- load the plugins
Plugin.load()
2022-11-21 05:33:47 +08:00
2022-12-01 23:37:50 +08:00
-- setup loader and handlers
Loader.setup()
2022-11-21 05:33:47 +08:00
2022-12-01 23:37:50 +08:00
-- correct time delta and loaded
local delta = vim.loop.hrtime() - start
Util.track().time = delta -- end setup
if Config.plugins["lazy.nvim"] then
Config.plugins["lazy.nvim"]._.loaded = { time = delta, source = "init.lua" }
end
2022-11-21 05:33:47 +08:00
2022-12-01 23:37:50 +08:00
-- load plugins with lazy=false or Plugin.init
Loader.init_plugins()
-- all done!
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()
2022-12-01 23:37:50 +08:00
local lazypath = vim.fn.stdpath("data") .. "/site/pack/lazy/opt/lazy.nvim"
2022-11-29 19:49:15 +08:00
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