Skip to content

Conversation

mats852
Copy link

@mats852 mats852 commented Sep 29, 2025

Description

The organization https://github.com/nvim-neorocks is now Lumen Labs https://github.com/lumen-oss

I'm currently overriding this path in the lazy configuration.

require("lazy").setup({
  -- ...
}, {
  rocks = {
    server = "https://lumen-oss.github.io/rocks-binaries/",
  },
})

Related Issue(s)

Screenshots

@mats852 mats852 changed the title fix: updated paths to lumen-oss github org fix(rockspec): updated paths to lumen-oss github org Sep 29, 2025
@cabreraam
Copy link

cabreraam commented Oct 2, 2025

Can confirm; this fixed the problem for me.

Tested out by modifying the default lazy.lua file:

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
-  local lazyrepo = "https://github.com/folke/lazy.nvim.git"
+  local lazyrepo = "https://github.com/mats852/lazy.nvim.git"
-  local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
+  local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=bugfix/nvim-neorocks-to-lumen-oss", lazyrepo, lazypath })  
  if vim.v.shell_error ~= 0 then
    vim.api.nvim_echo({
      { "Failed to clone lazy.nvim:\n", "ErrorMsg" },
      { out, "WarningMsg" },
      { "\nPress any key to exit..." },
    }, true, {})
    vim.fn.getchar()
    os.exit(1)
  end
end
vim.opt.rtp:prepend(lazypath)
...

and it fixed my issue.

@pbakiewicz
Copy link

Hi guys, when should we expect merge?

@folke
Copy link
Owner

folke commented Oct 3, 2025

those changes to the generated file should not be included

@xarthurx
Copy link

xarthurx commented Oct 6, 2025

Hi @mats852 , would you please able to update the PR?
There're quite some people facing the same issue:
https://www.reddit.com/r/neovim/comments/1nw8luw/failures_installing_nvimdappython/

And I think as long as the generated file is removed, this PR seems good to be merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

bug: nvim-neorocks organization renamed to lumen-oss

5 participants