mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(catppuccin): fix bufferline integration when no colorscheme is set. Closes #4641
This commit is contained in:
parent
2f6c1f6083
commit
6570a141c0
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ return {
|
||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
optional = true,
|
optional = true,
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
if vim.g.colors_name:find("catppuccin") then
|
if (vim.g.colors_name or ""):find("catppuccin") then
|
||||||
opts.highlights = require("catppuccin.groups.integrations.bufferline").get()
|
opts.highlights = require("catppuccin.groups.integrations.bufferline").get()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue