Skip to content

Commit 638e37c

Browse files
feat: add support for grapple.nvim
cbochs/grapple.nvim#164 has been merged 🎉
1 parent e910bef commit 638e37c

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
@@ -315,6 +315,11 @@ function M.setup()
315315
MiniFilesTitle = { fg = util.blend(t.bgHighlight, t.cyan, 0.7) },
316316
MiniFilesTitleFocused = { fg = t.cyan },
317317

318+
-- Grapple
319+
GrappleTitle = { fg = t.pink },
320+
GrappleFooter = { fg = t.grey },
321+
GrappleBorder = { fg = t.cyan },
322+
318323
-- TreeSitter Specific
319324
["@variable"] = { fg = t.fg },
320325
["@markup.strong"] = { fg = t.pink, bold = true },
@@ -334,6 +339,11 @@ function M.setup()
334339
theme.highlights.TelescopeResultsBorder = { fg = t.bgAlt, bg = t.bgAlt }
335340
theme.highlights.TelescopeResultsNormal = { bg = t.bgAlt }
336341
theme.highlights.TelescopeResultsTitle = { fg = t.bgAlt, bg = t.bgAlt }
342+
343+
-- Mimic styling in Grapple
344+
theme.highlights.GrappleNormal = { bg = t.bgAlt }
345+
theme.highlights.GrappleBorder = { fg = t.bgAlt, bg = t.bgAlt }
346+
theme.highlights.GrappleTitle = { fg = t.bgAlt, bg = t.cyan }
337347
end
338348

339349
if opts.terminal_colors then

0 commit comments

Comments
 (0)