-
Notifications
You must be signed in to change notification settings - Fork 138
Open
Description
Minimal reproducible:
-- nvim --clean -u mini.lua -c quit
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"marko-cerovac/material.nvim",
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
vim.cmd.colorscheme("material")Yet unhelpful manifestation: Executing nvim --clean -u mini.lua -c quit breaks ghostty.
I will update this issue with more information how to debug/inspect the underlying issue based on provided feedback.
Metadata
Metadata
Assignees
Labels
No labels