Skip to content

Commit

Permalink
fix(theme): hightlight update for broken parser tsx, jsx, and html
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Apr 11, 2024
1 parent 5b2d1f1 commit 54a3886
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lua/dullahan/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,22 @@ function M.setup()

-- tsx
["@constructor.tsx"] = { fg = c.blue500 },
["tsxTagName"] = { fg = c.yellow500 },
["tsxIntrinsicTagName"] = { fg = c.green500 },
["typescriptParens"] = { fg = c.orange500 },
["typescriptImport"] = { fg = c.red500 },
["typescriptExport"] = { fg = c.green500, style = "italic" },
["typescriptFuncKeyword"] = { fg = c.green500 },
["typescriptDefault"] = { fg = c.green500, style = "italic" },
["typescriptBraces"] = { fg = c.orange500 },
["tsxEscJs"] = { fg = c.cyan500 },
["typescriptProp"] = { fg = c.cyan500 },
["tsxEqual"] = { fg = c.green500 },
["typescriptIdentifierName"] = { fg = c.yellow500 },
["typescriptBlock"] = { fg = c.yellow500 },
["tsxAttrib"] = { fg = c.blue500 },
["tsxTag"] = { fg = c.orange500 },
["tsxCloseTag"] = { fg = c.orange500 },
["@tag.delimiter.tsx"] = { fg = c.orange500 },
["@tag.tsx"] = { fg = c.yellow500 },
["@keyword.return.tsx"] = { fg = c.green500, style = "italic" },
Expand Down

0 comments on commit 54a3886

Please sign in to comment.