Skip to content

Commit 9ed0465

Browse files
committed
add grapple window highlights
pending merge of cbochs/grapple.nvim#164
1 parent 12c5b2a commit 9ed0465

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lua/cyberdream/theme.lua

+10
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,11 @@ function M.setup()
310310
MiniFilesTitle = { fg = util.blend(t.bgHighlight, t.cyan, 0.7) },
311311
MiniFilesTitleFocused = { fg = t.cyan },
312312

313+
-- Grapple
314+
GrappleTitle = { fg = t.pink },
315+
GrappleFooter = { fg = t.grey },
316+
GrappleBorder = { fg = t.cyan },
317+
313318
-- TreeSitter Specific
314319
["@variable"] = { fg = t.fg },
315320
["@markup.strong"] = { fg = t.pink, bold = true },
@@ -329,6 +334,11 @@ function M.setup()
329334
theme.highlights.TelescopeResultsBorder = { fg = t.bgAlt, bg = t.bgAlt }
330335
theme.highlights.TelescopeResultsNormal = { bg = t.bgAlt }
331336
theme.highlights.TelescopeResultsTitle = { fg = t.bgAlt, bg = t.bgAlt }
337+
338+
-- Mimic styling in Grapple
339+
theme.highlights.GrappleNormal = { bg = t.bgAlt }
340+
theme.highlights.GrappleBorder = { fg = t.bgAlt, bg = t.bgAlt }
341+
theme.highlights.GrappleTitle = { fg = t.bgAlt, bg = t.cyan }
332342
end
333343

334344
if opts.terminal_colors then

0 commit comments

Comments
 (0)