Quick fix for lazyvim bufferline error when using catppuccin (#1084)

* Quick fix for lazyvim bufferline error when using catppuccin

* This is a slightly better fix

* Adding the fix in theme, actually messed up the theme colors

* Adding the migration file

---------

Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
Ramtin Javanmardi
2025-08-31 10:34:09 +02:00
committed by GitHub
parent 2442f774e4
commit b6896bd58f
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
return {
{
"akinsho/bufferline.nvim",
-- TODO: Remove this once its fixed in lazyvim. This is only a temporary fix, and its onl needed for catppuccin
init = function()
local bufline = require("catppuccin.groups.integrations.bufferline")
function bufline.get()
return bufline.get_theme()
end
end,
},
}