You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lazy: require("lazy.health").check()
- ERROR Failed to run healthcheck for "lazy" plugin. Exception:
function health#check, line 25
Vim(eval):E5108: Error executing lua ...cih/.local/share/nvim/lazy/lazy.nvim/lua/lazy/health.lua:29: attempt to index field 'uv' (a nil value)
stack traceback:
...cih/.local/share/nvim/lazy/lazy.nvim/lua/lazy/health.lua:29: in function 'check'
[string "luaeval()"]:1: in main chunk
This is a :checkhealth problem for lazy.nvim, because when you just bootstrap/install lazy.nvim and not require("lazy") after, it will give an error on :checkhealth unlike the older versions (v10.17.0 and below). This bug is not really a big deal, I know, but this bug wasted my time debugging my Neovim configuration just because I didn't add require("lazy") after bootstraping, and I don't want others to experience the same thing here.
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.9.5
Operating system/version
Arch Linux 6.8.5
Describe the bug
Like #1371, #1374, and #1405:
This is a
:checkhealth
problem forlazy.nvim
, because when you just bootstrap/installlazy.nvim
and notrequire("lazy")
after, it will give an error on:checkhealth
unlike the older versions (v10.17.0 and below). This bug is not really a big deal, I know, but this bug wasted my time debugging my Neovim configuration just because I didn't addrequire("lazy")
after bootstraping, and I don't want others to experience the same thing here.#1374 (comment)
Steps To Reproduce
lazy.nvim
(v10.18.0 or above), don't addrequire("lazy")
:checkhealth
Expected Behavior
:checkhealth
works fine without any errors.Repro
The text was updated successfully, but these errors were encountered: