From 917c685c1fb3774375ea2236e5e7aaa3d951fdda Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 23 Oct 2024 11:23:09 +0200 Subject: [PATCH] feat(catppuccin): bufferline integration. Closes #4583. Closes #4581 --- lua/lazyvim/plugins/colorscheme.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lua/lazyvim/plugins/colorscheme.lua b/lua/lazyvim/plugins/colorscheme.lua index c6376e1b..4e63bb75 100644 --- a/lua/lazyvim/plugins/colorscheme.lua +++ b/lua/lazyvim/plugins/colorscheme.lua @@ -50,5 +50,16 @@ return { which_key = true, }, }, + specs = { + { + "akinsho/bufferline.nvim", + optional = true, + opts = function(_, opts) + if vim.g.colors_name:find("catppuccin") then + opts.highlights = require("catppuccin.groups.integrations.bufferline").get() + end + end, + }, + }, }, }