Skip to content

Commit

Permalink
Merge pull request #74 from baco/add-missing-tscolor
Browse files Browse the repository at this point in the history
fix: Add missing Comment's color in TreeSitter's highlighting
  • Loading branch information
Mofiqul authored Jul 16, 2022
2 parents 4544ced + 9ac2857 commit 22d3ed7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/vscode/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ theme.set_highlights = function(opts)
hl(0, 'TSPunctBracket', { fg = c.vscFront, bg = 'NONE' })
hl(0, 'TSPunctSpecial', { fg = c.vscFront, bg = 'NONE' })
hl(0, 'markdownTSPunctSpecial', { fg = isDark and c.vscBlue or c.vscYellowOrange, bold = true })
hl(0, 'TSComment', { fg = c.vscGreen, bg = 'NONE', italic = opts.italic_comments })
hl(0, 'TSConstant', { fg = c.vscYellow, bg = 'NONE' })
hl(0, 'TSConstBuiltin', { fg = c.vscBlue, bg = 'NONE' })
hl(0, 'TSConstMacro', { fg = c.vscBlueGreen, bg = 'NONE' })
Expand Down

0 comments on commit 22d3ed7

Please sign in to comment.