AstroNvim / astrocommunity

A community repository of common plugin specifications
GNU General Public License v3.0
1.21k stars 240 forks source link

[ NOT FIXED ] AstroNvim is broken as of today's update #1182

Closed MrMic closed 2 months ago

MrMic commented 2 months ago

Checklist

Neovim version (nvim -v)

0.10.0

Operating system/version

Linux Ubuntu 22.04

Terminal/GUI

kitty

Describe the bug

Start the app and get this notification!

Capture d’écran du 2024-08-31 14-22-57

Steps to Reproduce

see above and screenshot

Expected behavior

normal start

Screenshots

Capture d’écran du 2024-08-31 14-22-57

Additional Context

No response

Minimal configuration

-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "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
  -- stylua: ignore
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)

-- install plugins
local plugins = {
  { "AstroNvim/AstroNvim", import = "astronvim.plugins" },
  { "AstroNvim/astrocommunity" },

  -- add any other plugins/customizations here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

-- add anything else here (autocommands, vim.filetype, etc.)
Std-Enigma commented 2 months ago

Do you have any custom key mappings for notify.nvim? Or any community plugin that adds or customizes notify.nvim mappings?

MrMic commented 2 months ago

No.

Capture d’écran du 2024-09-01 11-07-16

Std-Enigma commented 2 months ago

I can't reproduce this issue

MrMic commented 2 months ago

It is the update of yesterday. It must be Rolled back! It breaks the entire App and I can even start it up. Then troubleshoot... In my memory, only 2 or 3 plugins have been updated.

MrMic commented 2 months ago

Latest update of the error:

Capture d’écran du 2024-09-01 19-54-53

MrMic commented 2 months ago

Clean all ~/.local/{state,share} and ~/.cache directories but still got the issue, which prevent me to use AstroNvim at all! 😥

Capture d’écran du 2024-09-02 20-26-04

Tha last Astrocore update seems to have break something...

ALameLlama commented 2 months ago

I can't recreate this using the minimal configuration.

MrMic commented 2 months ago

Because the update of Astrocore has broken a plugin integration...

MrMic commented 2 months ago

I was compelled to reinstall all... Damn!