2022-11-21 06:34:35 +08:00
|
|
|
local Util = require("lazy.util")
|
|
|
|
local Config = require("lazy.config")
|
2022-11-21 05:33:47 +08:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
2022-11-22 04:50:16 +08:00
|
|
|
---@alias LoaderType "event"|"ft"|"module"|"keys"|"cmd"|"init"
|
2022-11-21 05:33:47 +08:00
|
|
|
---@type LoaderType[]
|
|
|
|
M.types = {
|
2022-11-21 05:34:55 +08:00
|
|
|
"event",
|
|
|
|
"ft",
|
|
|
|
"module",
|
|
|
|
"keys",
|
|
|
|
"cmd",
|
2022-11-21 05:33:47 +08:00
|
|
|
}
|
|
|
|
|
2022-11-22 04:50:16 +08:00
|
|
|
---@class LazyLoaders: table<LoaderType, table<string, string[]>>|{init: string[]}
|
|
|
|
M.loaders = { init = {} }
|
2022-11-21 05:33:47 +08:00
|
|
|
|
|
|
|
for _, type in ipairs(M.types) do
|
2022-11-21 05:34:55 +08:00
|
|
|
M.loaders[type] = {}
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.add(plugin)
|
2022-11-21 05:34:55 +08:00
|
|
|
if plugin.init or plugin.opt == false and plugin.config then
|
2022-11-22 04:50:16 +08:00
|
|
|
table.insert(M.loaders.init, plugin.name)
|
2022-11-21 05:34:55 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
for _, loader_type in ipairs(M.types) do
|
|
|
|
---@type string[]|string
|
|
|
|
local loaders = plugin[loader_type]
|
|
|
|
if loaders then
|
|
|
|
loaders = type(loaders) == "table" and loaders or { loaders }
|
|
|
|
---@cast loaders string[]
|
|
|
|
for _, loader in ipairs(loaders) do
|
|
|
|
if not M.loaders[loader_type][loader] then
|
|
|
|
M.loaders[loader_type][loader] = {}
|
|
|
|
end
|
|
|
|
table.insert(M.loaders[loader_type][loader], plugin.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.setup()
|
2022-11-21 05:34:55 +08:00
|
|
|
local group = vim.api.nvim_create_augroup("lazy_loader", {
|
|
|
|
clear = true,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- modules
|
|
|
|
table.insert(package.loaders, 2, M.module)
|
|
|
|
|
|
|
|
-- events
|
|
|
|
Util.track("loader_events")
|
|
|
|
for event, plugins in pairs(M.loaders.event) do
|
|
|
|
if event == "VimEnter" and vim.v.vim_did_enter == 1 then
|
|
|
|
M.load(plugins)
|
|
|
|
else
|
|
|
|
local user_event = event:match("User (.*)")
|
|
|
|
vim.api.nvim_create_autocmd(user_event and "User" or event, {
|
|
|
|
once = true,
|
|
|
|
group = group,
|
|
|
|
pattern = user_event,
|
|
|
|
callback = function()
|
|
|
|
Util.track("event: " .. (user_event or event))
|
|
|
|
M.load(plugins)
|
|
|
|
Util.track()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Util.track()
|
|
|
|
|
|
|
|
-- filetypes
|
|
|
|
Util.track("loader_filetypes")
|
|
|
|
for ft, plugins in pairs(M.loaders.ft) do
|
|
|
|
vim.api.nvim_create_autocmd("FileType", {
|
|
|
|
once = true,
|
|
|
|
pattern = ft,
|
|
|
|
group = group,
|
|
|
|
callback = function()
|
|
|
|
Util.track("filetype: " .. ft)
|
|
|
|
M.load(plugins)
|
|
|
|
Util.track()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
Util.track()
|
|
|
|
|
|
|
|
-- keys
|
|
|
|
Util.track("loader_keys")
|
|
|
|
for keys, plugins in pairs(M.loaders.keys or {}) do
|
|
|
|
vim.keymap.set("n", keys, function()
|
|
|
|
vim.keymap.del("n", keys)
|
|
|
|
Util.track("keys: " .. keys)
|
|
|
|
M.load(plugins)
|
|
|
|
vim.api.nvim_input(keys)
|
|
|
|
Util.track()
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
Util.track()
|
|
|
|
|
|
|
|
-- commands
|
|
|
|
Util.track("loader_commands")
|
|
|
|
for cmd, plugins in pairs(M.loaders.cmd or {}) do
|
|
|
|
vim.api.nvim_create_user_command(cmd, function(event)
|
|
|
|
vim.api.nvim_del_user_command(cmd)
|
|
|
|
Util.track("cmd: " .. cmd)
|
|
|
|
M.load(plugins)
|
|
|
|
vim.cmd(
|
|
|
|
("%s %s%s%s %s"):format(
|
|
|
|
event.mods or "",
|
|
|
|
event.line1 == event.line2 and "" or event.line1 .. "," .. event.line2,
|
|
|
|
cmd,
|
|
|
|
event.bang and "!" or "",
|
|
|
|
event.args
|
|
|
|
)
|
|
|
|
)
|
|
|
|
Util.track()
|
|
|
|
end, {
|
|
|
|
bang = true,
|
|
|
|
nargs = "*",
|
|
|
|
})
|
|
|
|
end
|
|
|
|
Util.track()
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
function M.init_plugins()
|
2022-11-21 05:34:55 +08:00
|
|
|
Util.track("loader_plugin_init")
|
2022-11-22 04:50:16 +08:00
|
|
|
for _, name in ipairs(M.loaders.init) do
|
|
|
|
local plugin = Config.plugins[name]
|
2022-11-21 05:34:55 +08:00
|
|
|
if plugin.init then
|
|
|
|
Util.track(plugin.name)
|
|
|
|
plugin.init()
|
|
|
|
Util.track()
|
|
|
|
end
|
|
|
|
if plugin.opt == false then
|
|
|
|
M.load(plugin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
Util.track()
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param modname string
|
|
|
|
function M.module(modname)
|
2022-11-21 05:34:55 +08:00
|
|
|
local idx = modname:find(".", 1, true) or #modname + 1
|
|
|
|
|
|
|
|
while idx do
|
|
|
|
local name = modname:sub(1, idx - 1)
|
|
|
|
local plugins = M.loaders.module[name]
|
|
|
|
if plugins then
|
|
|
|
M.load(plugins)
|
2022-11-22 04:50:16 +08:00
|
|
|
-- M.loaders.module[name] = nil
|
2022-11-21 05:34:55 +08:00
|
|
|
end
|
|
|
|
idx = modname:find(".", idx + 1, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
---@diagnostic disable-next-line: no-unknown
|
|
|
|
local mod = package.loaded[modname]
|
|
|
|
if type(mod) == "table" then
|
|
|
|
return function()
|
|
|
|
return mod
|
|
|
|
end
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugins string|LazyPlugin|string[]|LazyPlugin[]
|
|
|
|
function M.load(plugins)
|
2022-11-21 05:34:55 +08:00
|
|
|
if type(plugins) == "string" or plugins.name then
|
|
|
|
plugins = { plugins }
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
for _, plugin in ipairs(plugins) do
|
|
|
|
if type(plugin) == "string" then
|
|
|
|
plugin = Config.plugins[plugin]
|
|
|
|
end
|
|
|
|
---@cast plugin LazyPlugin
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
if not plugin.loaded then
|
|
|
|
plugin.loaded = true
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
Util.track(plugin.name)
|
|
|
|
M.packadd(plugin)
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
if plugin.requires then
|
|
|
|
M.load(plugin.requires)
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
if plugin.config then
|
|
|
|
plugin.config()
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
Util.track()
|
|
|
|
end
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.packadd(plugin)
|
2022-11-21 05:34:55 +08:00
|
|
|
if plugin.opt then
|
|
|
|
vim.cmd.packadd(plugin.pack)
|
|
|
|
M.source_plugin_files(plugin, true)
|
|
|
|
else
|
|
|
|
vim.opt.runtimepath:append(plugin.dir)
|
|
|
|
M.source_plugin_files(plugin)
|
|
|
|
M.source_plugin_files(plugin, true)
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
---@param after? boolean
|
|
|
|
function M.source_plugin_files(plugin, after)
|
2022-11-21 05:34:55 +08:00
|
|
|
local pattern = (after and "/after" or "") .. ("/plugin/" .. "**/*.\\(vim\\|lua\\)")
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
local _, entries = pcall(vim.fn.glob, plugin.dir .. "/" .. pattern, false, true)
|
2022-11-21 05:33:47 +08:00
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
if entries then
|
|
|
|
---@cast entries string[]
|
|
|
|
for _, file in ipairs(entries) do
|
|
|
|
vim.cmd("silent source " .. file)
|
|
|
|
end
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|