Skip to content

Commit

Permalink
feat(bufferline): support no_underline option (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr authored Oct 26, 2023
1 parent ea52fe8 commit f7638a1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/catppuccin/groups/integrations/bufferline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f7638a1

Please sign in to comment.