From f7638a1a65cbffdd01a9ddac0018a20ec4be29e2 Mon Sep 17 00:00:00 2001 From: mrtnvgr Date: Thu, 26 Oct 2023 14:28:24 +0700 Subject: [PATCH] feat(bufferline): support `no_underline` option (#601) --- lua/catppuccin/groups/integrations/bufferline.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/catppuccin/groups/integrations/bufferline.lua b/lua/catppuccin/groups/integrations/bufferline.lua index fa266be4..454fe0d2 100644 --- a/lua/catppuccin/groups/integrations/bufferline.lua +++ b/lua/catppuccin/groups/integrations/bufferline.lua @@ -104,6 +104,7 @@ function M.get(user_config) color[style] = true if O.no_italic and style == "italic" then color[style] = false end if O.no_bold and style == "bold" then color[style] = false end + if O.no_underline and style == "underline" then color[style] = false end end end color.style = nil