Skip to content

Commit

Permalink
fix(treesitter_context): underline content if `transparent_background…
Browse files Browse the repository at this point in the history
…` is true (#519)
  • Loading branch information
joshmedeski committed Jun 24, 2023
1 parent fc73faa commit 6ecc158
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lua/catppuccin/groups/integrations/treesitter_context.lua
@@ -1,9 +1,7 @@
local M = {}

function M.get()
return {
TreesitterContext = { bg = C.mantle, fg = C.text },
}
return O.transparent_background and { TreesitterContextBottom = { sp = C.dim, style = { "underline" } } } or {}
end

return M

0 comments on commit 6ecc158

Please sign in to comment.