mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
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:
parent
c83df9e68d
commit
983d6dd8bc
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue