From 0903c4886535d97e6e62f710ab97119d2e09aa0b Mon Sep 17 00:00:00 2001 From: EdenEast Date: Tue, 6 Dec 2022 15:59:50 -0500 Subject: [PATCH] feat(treesitter): add checked and unchecked highlight (#273) --- lua/nightfox/group/modules/treesitter.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/nightfox/group/modules/treesitter.lua b/lua/nightfox/group/modules/treesitter.lua index 5fe7fab9..e07744ca 100644 --- a/lua/nightfox/group/modules/treesitter.lua +++ b/lua/nightfox/group/modules/treesitter.lua @@ -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)