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
I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.10.0
Operating system/version
Linux Fedora 40
Describe the bug
Fedora 40 has both lua (5.4) and lua-5.1, but "lua5.1" is listed as not installed and therefore unable to use the new luarocks features. It works if I copy /usr/bin/lua-5.1 to /usr/bin/lua5.1 but I don't think that's intuitive at all.
Steps To Reproduce
On Fedora 40:
install neovim
install lazy
install luarocks
run :checkhealth
Expected Behavior
Lua 5.1 is listed as installed
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.10.0
Operating system/version
Linux Fedora 40
Describe the bug
Fedora 40 has both lua (5.4) and lua-5.1, but "lua5.1" is listed as not installed and therefore unable to use the new luarocks features. It works if I copy
/usr/bin/lua-5.1
to/usr/bin/lua5.1
but I don't think that's intuitive at all.Steps To Reproduce
On Fedora 40:
:checkhealth
Expected Behavior
Lua 5.1 is listed as installed
Repro
The text was updated successfully, but these errors were encountered: