Skip to content

Commit

Permalink
fix(treesitter): set highlight of TSModuleInfo signs (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoineco authored May 25, 2024
1 parent 454cb9f commit e972c96
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lua/mellifluous/highlights/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ function M.set(hl, colors)
hl.set("@include", { link = "@keyword.import" })
hl.set("@repeat", { link = "@keyword.repeat" })
hl.set("@debug", { link = "@keyword.debug" })

-- :TSModuleInfo
hl.set('TSModuleInfoGood', { fg = colors.ui_green, bold = true })
hl.set('TSModuleInfoBad', { fg = colors.ui_red, bold = true })
end

return M

0 comments on commit e972c96

Please sign in to comment.