From 5111d2aa0211e93a9bc0f8f7fb11d061087a6511 Mon Sep 17 00:00:00 2001 From: wsgggws Date: Mon, 25 Aug 2025 12:05:13 +0800 Subject: [PATCH] fix(bufferline): bufferline use catppuccin both new and old APIS - new APIs (get_bufferline) - old APIs (get) --- lua/lazyvim/plugins/colorscheme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/colorscheme.lua b/lua/lazyvim/plugins/colorscheme.lua index fa611bf4..4c41d492 100644 --- a/lua/lazyvim/plugins/colorscheme.lua +++ b/lua/lazyvim/plugins/colorscheme.lua @@ -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() + opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme() end end, },