Skip to content

Commit

Permalink
fix(treesitter): Markdown checkbox highlight fix (#285)
Browse files Browse the repository at this point in the history
* fix(treesitter): Checkbox highlighting bg and fg fix

* fix(treesitter): Removed checkbox bg
  • Loading branch information
MetinYalcinkaya authored Feb 18, 2025
1 parent 992780f commit 7903733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/onedarkpro/highlights/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function M.groups(theme)
["@markup.raw.delimiter"] = { fg = theme.palette.gray },

["@markup.list"] = { fg = theme.palette.red }, -- list markers
["@markup.list.checked"] = { bg = theme.palette.purple, fg = theme.palette.bg }, -- checked todo-style list markers
["@markup.list.checked"] = { fg = theme.palette.purple }, -- checked todo-style list markers
["@markup.list.unchecked"] = { fg = theme.palette.fg }, -- unchecked todo-style list markers

-- Tags
Expand Down

0 comments on commit 7903733

Please sign in to comment.