Skip to content

Commit cd18f6c

Browse files
Merge remote-tracking branch 'upstream/master'
2 parents be363a2 + dc0dc3a commit cd18f6c

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

Diff for: lua/darkplus/theme.lua

+24-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ theme.set_highlights = function()
8585
hl(0, "Debug", { fg = c.red, bg = 'NONE' })
8686
hl(0, "Title", { fg = c.blue_1, bg = 'NONE', bold = true, })
8787
hl(0, "Label", { fg = c.blue_2, bg = 'NONE' })
88-
hl(0, "SpecialChar", { fg = c.dark_yellow, bg = 'NONE' })
88+
hl(0, "SpecialChar", { fg = c.fg, bg = 'NONE' })
8989
hl(0, "Delimiter", { fg = c.fg, bg = 'NONE' })
9090
hl(0, "SpecialComment", { fg = c.fg, bg = 'NONE' })
9191
hl(0, "Tag", { fg = c.blue_1, bg = 'NONE' })
@@ -98,7 +98,7 @@ theme.set_highlights = function()
9898
hl(0, "Statement", { fg = c.fg, bg = 'NONE' })
9999
hl(0, "Identifier", { fg = c.blue_2, bg = 'NONE' })
100100
hl(0, "PreCondit", { fg = c.dark_yellow, bg = 'NONE' })
101-
hl(0, "Special", { fg = c.dark_yellow, bg = 'NONE' })
101+
hl(0, "Special", { fg = c.orange, bg = 'NONE' })
102102

103103
-- StatusLine
104104
hl(0, "StatusLine", { fg = c.alt_fg, bg = c.alt_bg })
@@ -444,11 +444,17 @@ theme.set_highlights = function()
444444
hl(0, "@text.reference.markdown_inline", { fg = c.orange, bg = 'NONE' })
445445
hl(0, "@text.uri.markdown_inline", { fg = c.fg, bg = 'NONE', underline = true, })
446446
hl(0, "@text.title.markdown", { fg = c.blue_1, bg = 'NONE', bold = true, })
447-
hl(0, "@punctuation.special.markdown", { fg = c.light_gray, bg = 'NONE' })
448447
hl(0, "@text.reference.markdown", { fg = c.blue_1, bg = 'NONE' })
449448
hl(0, "@lsp.type.class.markdown", { fg = c.blue_1, bg = 'NONE' })
450449
hl(0, "@text.literal.markdown_inline", { fg = c.orange, bg = 'NONE' })
451450
hl(0, "@text.literal.markdown", { fg = c.orange, bg = 'NONE' })
451+
hl(0, "@markup.link.label.markdown_inline", { fg = c.orange, bg = 'NONE' })
452+
hl(0, "@markup.list.markdown", { fg = c.blue_1, bg = 'NONE' })
453+
hl(0, "@punctuation.special.markdown", { fg = c.green_1, bg = 'NONE' })
454+
hl(0, "@markup.quote.markdown", { fg = c.fg, bg = 'NONE' })
455+
hl(0, "@markup.link.url.markdown_inline", { fg = c.blue_1, bg = 'NONE', underline = true })
456+
hl(0, "@markup.link.markdown_inline", { fg = c.fg, bg = 'NONE' })
457+
hl(0, "@markup.raw.markdown_inline", { fg = c.orange, bg = 'NONE' })
452458

453459
-- Lua
454460
hl(0, "@lsp.type.property.lua", { fg = c.fg, bg = 'NONE' })
@@ -508,6 +514,13 @@ theme.set_highlights = function()
508514

509515
-- html
510516
hl(0, "@markup.heading.html", { fg = c.fg, bg = 'NONE' })
517+
hl(0, "@markup.heading.1.html", { fg = c.fg, bg = 'NONE' })
518+
hl(0, "@markup.heading.2.html", { fg = c.fg, bg = 'NONE' })
519+
hl(0, "@markup.heading.3.html", { fg = c.fg, bg = 'NONE' })
520+
hl(0, "@markup.heading.4.html", { fg = c.fg, bg = 'NONE' })
521+
hl(0, "@markup.heading.5.html", { fg = c.fg, bg = 'NONE' })
522+
hl(0, "@markup.heading.6.html", { fg = c.fg, bg = 'NONE' })
523+
511524

512525
-- zsh
513526
hl(0, "zshCommands", { fg = c.yellow, bg = 'NONE' })
@@ -518,6 +531,14 @@ theme.set_highlights = function()
518531
hl(0, "zshSubstDelim", { link = '@punctuation.special' })
519532
hl(0, "zshKSHFunction", { link = 'Function' })
520533

534+
-- nginx
535+
hl(0, "ngxComment", { fg = c.green_1, bg = 'NONE' })
536+
hl(0, "ngxDirective", { fg = c.blue_2, bg = 'NONE' })
537+
hl(0, "ngxDirectiveThirdParty", { fg = c.blue_2, bg = 'NONE' })
538+
hl(0, "ngxDirectiveBlock", { fg = c.blue_1, bg = 'NONE' })
539+
hl(0, "ngxBlock", { fg = c.blue_1, bg = 'NONE' })
540+
hl(0, "ngxDirectiveImportant", { fg = c.purple, bg = 'NONE' })
541+
521542
-- Lazy
522543
hl(0, "LazyButton", { fg = c.alt_fg, bg = "#2c3239" })
523544
hl(0, "LazyButtonActive", { fg = c.fg, bg = "#3c4249" })

0 commit comments

Comments
 (0)