From 5cb85cb801c48dd5663d27ad7c04dcb41e03add2 Mon Sep 17 00:00:00 2001 From: wyl-dev Date: Fri, 12 Sep 2025 15:56:43 -0500 Subject: [PATCH] fix(colorscheme): use get_theme() for catppuccin bufferline integration catppuccin's bufferline integration no longer provides `get()`. Switch to `get_theme()` to avoid the error: attempt to call field 'get' (a nil value) --- 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, },