Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
VolodymyrVorona committed Jun 12, 2024
2 parents be363a2 + dc0dc3a commit cd18f6c
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions lua/darkplus/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ theme.set_highlights = function()
hl(0, "Debug", { fg = c.red, bg = 'NONE' })
hl(0, "Title", { fg = c.blue_1, bg = 'NONE', bold = true, })
hl(0, "Label", { fg = c.blue_2, bg = 'NONE' })
hl(0, "SpecialChar", { fg = c.dark_yellow, bg = 'NONE' })
hl(0, "SpecialChar", { fg = c.fg, bg = 'NONE' })
hl(0, "Delimiter", { fg = c.fg, bg = 'NONE' })
hl(0, "SpecialComment", { fg = c.fg, bg = 'NONE' })
hl(0, "Tag", { fg = c.blue_1, bg = 'NONE' })
Expand All @@ -98,7 +98,7 @@ theme.set_highlights = function()
hl(0, "Statement", { fg = c.fg, bg = 'NONE' })
hl(0, "Identifier", { fg = c.blue_2, bg = 'NONE' })
hl(0, "PreCondit", { fg = c.dark_yellow, bg = 'NONE' })
hl(0, "Special", { fg = c.dark_yellow, bg = 'NONE' })
hl(0, "Special", { fg = c.orange, bg = 'NONE' })

-- StatusLine
hl(0, "StatusLine", { fg = c.alt_fg, bg = c.alt_bg })
Expand Down Expand Up @@ -444,11 +444,17 @@ theme.set_highlights = function()
hl(0, "@text.reference.markdown_inline", { fg = c.orange, bg = 'NONE' })
hl(0, "@text.uri.markdown_inline", { fg = c.fg, bg = 'NONE', underline = true, })
hl(0, "@text.title.markdown", { fg = c.blue_1, bg = 'NONE', bold = true, })
hl(0, "@punctuation.special.markdown", { fg = c.light_gray, bg = 'NONE' })
hl(0, "@text.reference.markdown", { fg = c.blue_1, bg = 'NONE' })
hl(0, "@lsp.type.class.markdown", { fg = c.blue_1, bg = 'NONE' })
hl(0, "@text.literal.markdown_inline", { fg = c.orange, bg = 'NONE' })
hl(0, "@text.literal.markdown", { fg = c.orange, bg = 'NONE' })
hl(0, "@markup.link.label.markdown_inline", { fg = c.orange, bg = 'NONE' })
hl(0, "@markup.list.markdown", { fg = c.blue_1, bg = 'NONE' })
hl(0, "@punctuation.special.markdown", { fg = c.green_1, bg = 'NONE' })
hl(0, "@markup.quote.markdown", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.link.url.markdown_inline", { fg = c.blue_1, bg = 'NONE', underline = true })
hl(0, "@markup.link.markdown_inline", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.raw.markdown_inline", { fg = c.orange, bg = 'NONE' })

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

-- html
hl(0, "@markup.heading.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.1.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.2.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.3.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.4.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.5.html", { fg = c.fg, bg = 'NONE' })
hl(0, "@markup.heading.6.html", { fg = c.fg, bg = 'NONE' })


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

-- nginx
hl(0, "ngxComment", { fg = c.green_1, bg = 'NONE' })
hl(0, "ngxDirective", { fg = c.blue_2, bg = 'NONE' })
hl(0, "ngxDirectiveThirdParty", { fg = c.blue_2, bg = 'NONE' })
hl(0, "ngxDirectiveBlock", { fg = c.blue_1, bg = 'NONE' })
hl(0, "ngxBlock", { fg = c.blue_1, bg = 'NONE' })
hl(0, "ngxDirectiveImportant", { fg = c.purple, bg = 'NONE' })

-- Lazy
hl(0, "LazyButton", { fg = c.alt_fg, bg = "#2c3239" })
hl(0, "LazyButtonActive", { fg = c.fg, bg = "#3c4249" })
Expand Down

0 comments on commit cd18f6c

Please sign in to comment.