lazy.nvim/lua/lazy/minit.lua

141 lines
3.1 KiB
Lua
Raw Normal View History

2024-06-29 13:15:22 +08:00
---@diagnostic disable: inject-field
local islist = vim.islist or vim.tbl_islist
local M = {}
2024-06-29 14:03:37 +08:00
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
---@return LazySpec[]
local function get_spec(opts)
local ret = opts.spec or {}
return ret and type(ret) == "table" and islist(ret) and ret or { ret }
end
2024-06-29 14:03:37 +08:00
---@param defaults LazyConfig
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
function M.extend(defaults, opts)
local spec = {}
vim.list_extend(spec, get_spec(defaults))
vim.list_extend(spec, get_spec(opts))
return vim.tbl_deep_extend("force", defaults, opts, { spec = spec })
end
2024-07-04 23:53:45 +08:00
---@param opts LazyConfig
2024-06-29 13:15:22 +08:00
function M.setup(opts)
2024-06-29 13:46:41 +08:00
opts = M.extend({
2024-07-05 00:00:59 +08:00
local_spec = false,
2024-06-29 13:46:41 +08:00
change_detection = { enabled = false },
}, opts)
2024-06-29 13:15:22 +08:00
2024-07-04 23:53:45 +08:00
local args = {}
local is_busted = false
for _, a in ipairs(_G.arg) do
if a == "--busted" then
is_busted = true
else
table.insert(args, a)
end
end
_G.arg = args
if is_busted then
opts = M.busted.setup(opts)
end
2024-06-29 13:15:22 +08:00
-- set stdpaths to use .tests
2024-06-29 14:03:37 +08:00
if vim.env.LAZY_STDPATH then
local root = vim.fn.fnamemodify(vim.env.LAZY_STDPATH, ":p")
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
2024-06-29 13:15:22 +08:00
end
vim.o.loadplugins = true
require("lazy").setup(opts)
if vim.g.colors_name == nil then
vim.cmd("colorscheme habamax")
end
2024-06-29 13:46:41 +08:00
require("lazy").update():wait()
if vim.bo.filetype == "lazy" then
local errors = false
for _, plugin in pairs(require("lazy.core.config").spec.plugins) do
errors = errors or require("lazy.core.plugin").has_errors(plugin)
end
if not errors then
vim.cmd.close()
end
end
2024-07-04 23:53:45 +08:00
if is_busted then
M.busted.run()
end
2024-06-29 13:46:41 +08:00
end
function M.repro(opts)
opts = M.extend({
spec = {
{
"folke/tokyonight.nvim",
priority = 1000,
lazy = false,
config = function()
require("tokyonight").setup({ style = "moon" })
require("tokyonight").load()
end,
},
},
install = { colorscheme = { "tokyonight" } },
}, opts)
M.setup(opts)
2024-06-29 13:15:22 +08:00
end
2024-07-04 23:53:45 +08:00
M.busted = {}
2024-06-29 13:15:22 +08:00
2024-07-04 23:53:45 +08:00
function M.busted.run()
2024-06-29 13:15:22 +08:00
local Config = require("lazy.core.config")
-- disable termnial output for the tests
Config.options.headless = {}
if not require("lazy.core.config").headless() then
return vim.notify("busted can only run in headless mode. Please run with `nvim -l`", vim.log.levels.WARN)
end
2024-06-29 13:15:22 +08:00
-- run busted
return pcall(require("busted.runner"), {
standalone = false,
}) or os.exit(1)
end
2024-07-04 23:53:45 +08:00
---@param opts LazyConfig
function M.busted.setup(opts)
local args = table.concat(_G.arg, " ")
local json = args:find("--output[ =]json")
return M.extend({
spec = {
"lunarmodules/busted",
{ dir = vim.uv.cwd() },
},
headless = {
process = not json,
log = not json,
task = not json,
},
rocks = { hererocks = true },
}, opts)
end
---@param opts LazyConfig
function M.busted.init(opts)
opts = M.busted.setup(opts)
M.setup(opts)
M.busted.run()
end
setmetatable(M.busted, {
__call = function(_, opts)
M.busted.init(opts)
end,
})
2024-06-29 13:15:22 +08:00
return M