Skip to content

Commit

Permalink
Fix comment color
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Jan 2, 2024
1 parent fbcffb4 commit 639cb85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/darkplus/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ theme.set_highlights = function()
hl(0, "TabLineFill", { fg = c.alt_fg, bg = c.alt_bg })
hl(0, "WinSeparator", { fg = c.light_gray, bg = 'NONE' })

hl(0, "Comment", { fg = c.light_gray, bg = 'NONE', italic = true, })
hl(0, "Comment", { fg = c.green_1, bg = 'NONE' })
hl(0, "Variable", { fg = c.blue_2, bg = 'NONE' })
hl(0, "String", { fg = c.orange, bg = 'NONE' })
hl(0, "Character", { fg = c.orange, bg = 'NONE' })
Expand Down Expand Up @@ -123,7 +123,7 @@ theme.set_highlights = function()


-- Treesitter
hl(0, "@comment", { fg = c.green_1, bg = 'NONE', italic = true, })
hl(0, "@comment", { link = 'Comment' })
hl(0, "@none", { fg = 'NONE', bg = 'NONE' })
hl(0, "@preproc", { link = 'PreProc' })
hl(0, "@define", { link = 'Define' })
Expand Down

0 comments on commit 639cb85

Please sign in to comment.