Skip to content

Commit

Permalink
feat(treesitter): add <?php ... ?> highlights (#144)
Browse files Browse the repository at this point in the history
* feat(treesitter): add `<?php ... ?>` highlights

* fix: unlink `@keyword.function` and use `fg`
  • Loading branch information
AlejandroSuero authored Sep 15, 2024
1 parent 037c3db commit 4ef753c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/astrotheme/groups/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ local function callback(c, opts)
["@punctuation.delimiter"] = { fg = c.syntax.text },
["@punctuation.bracket"] = { fg = c.syntax.text },
["@punctuation.special"] = { fg = c.syntax.text },
["@punctuation.bracket.php"] = { fg = c.syntax.purple, bold = true },

-- comment
["@comment"] = "Comment",
Expand Down

0 comments on commit 4ef753c

Please sign in to comment.