mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* 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>
13 lines
324 B
Lua
13 lines
324 B
Lua
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,
|
|
},
|
|
}
|