Closed
Description
Did you check docs and existing issues?
- I have read all the lazy.nvim docs
- I have updated the plugin to the latest version before submitting this issue
- I have searched the existing issues of lazy.nvim
- I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.11.0-dev-1092+g0da4d89558
Operating system/version
Arch Linux
Describe the bug
For some reason, I'm getting this error message on every computer when lazy.nvim tries to build care.nvim (https://github.com/max397574/care.nvim). I really do not know what these all rockspec topics mean and for that I can't become clearer
Steps To Reproduce
Creating a minimal config with the snippet given below should be adequate.
Expected Behavior
The build shouldn't fail.
Repro
vim.env.LAZY_STDPATH = ".repro"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua")
540C
)()
require("lazy.minit").repro({
spec = {
{
"max397574/care.nvim",
config = function()
vim.keymap.set("i", "<tab>", "<Plug>(CareConfirm)")
vim.keymap.set("i", "<c-e>", "<Plug>(CareClose)")
vim.keymap.set("i", "<c-j>", "<Plug>(CareSelectNext)")
vim.keymap.set("i", "<c-k>", "<Plug>(CareSelectPrev)")
end,
},
},
})