fix(bufferline): fix the path to bufferline.lua in colorscheme.lua

- 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.
This commit is contained in:
sasori-256 2025-09-26 00:58:36 +09:00
parent c83df9e68d
commit 983d6dd8bc

View file

@ -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,
},