Install with your favorite plugin manager.
You can configure different style and color tags like in the following example:
local HighlightTags = {}
HighilightTags["YOUR_TAG"] = {guifg='some_color', gui="<style(s)>"}
vim.g.highlightTags = HighlightTags
The gui property supports these values:
- bold
- underline
- undercurl
- inverse
- italic
- standout
- nocombine
- strikethrough
The default Configurations are as follows:
HighlightTags = {}
HighlightTags["!"] = {guifg='#ff2d00'}
HighlightTags["?"] = {guifg='#1f98ff'}
HighlightTags["todo"] = {guifg='#ff8c00'}
HighlightTags["TODO"] = {guifg='#ff8c00'}
HighlightTags["*"] = {guifg='#98C379'}
vim.g.highlightTags = HighlightTags