Skip to content

Commit

Permalink
feat(treesitter): add checked and unchecked highlight (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenEast authored Dec 6, 2022
1 parent ae7474e commit 0903c48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lua/nightfox/group/modules/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ If you want to stay on nvim 0.7, disable the module, or pin to commit 15f3b5837a
["@text.note"] = { fg = spec.bg1, bg = spec.diag.info },
["@text.warning"] = { fg = spec.bg1, bg = spec.diag.warn },
["@text.danger"] = { fg = spec.bg1, bg = spec.diag.error },
["@text.todo.unchecked"] = { fg = spec.fg3 }, -- For brackets and parens.
["@text.todo.checked"] = { fg = P.green.base }, -- For brackets and parens.

["@text.diff.add"] = { link = "diffAdded" }, -- added text (for diff files)
["@text.diff.delete"] = { link = "diffRemoved" }, -- deleted text (for diff files)
Expand Down

0 comments on commit 0903c48

Please sign in to comment.