From 983d6dd8bc70fe072b42d096e8230a8901b3d1cf Mon Sep 17 00:00:00 2001 From: sasori-256 Date: Fri, 26 Sep 2025 00:58:36 +0900 Subject: [PATCH] fix(bufferline): fix the path to bufferline.lua in colorscheme.lua MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - In catppuccin/nvim, the path for bufferline.lua had been changed from “lua/catppuccin/groups/integrations/” to “lua/catppuccin/special/”, causing a loading error each time Neovim was launched. - The bug was fixed by correcting the path specification in the require statement within LazyVim's colorscheme.lua. --- lua/lazyvim/plugins/colorscheme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/colorscheme.lua b/lua/lazyvim/plugins/colorscheme.lua index 4c41d492..10639fd9 100644 --- a/lua/lazyvim/plugins/colorscheme.lua +++ b/lua/lazyvim/plugins/colorscheme.lua @@ -58,7 +58,7 @@ return { optional = true, opts = function(_, opts) if (vim.g.colors_name or ""):find("catppuccin") then - opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme() + opts.highlights = require("catppuccin.special.bufferline").get_theme() end end, },