From 06df4330266bb4b85458745b5090b29386722512 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sun, 15 Mar 2026 00:46:53 +0100 Subject: [PATCH] added todo comments as supported plugin, fixed missing error color --- README.md | 1 + lua/tccs/theme.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 5e9dbc3..6307023 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Other plugins may work as well, but don't are explicitly configured. - [NVIM Treesitter](https://github.com/nvim-treesitter/nvim-treesitter) - [NVIM Ufo](https://github.com/kevinhwang91/nvim-ufo) - [VIM Illuminate](https://github.com/RRethy/vim-illuminate) +- [Todo Comments](https://github.com/folke/todo-comments.nvim) - [Wilder](https://github.com/gelguy/wilder.nvim) ## Setup diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index b39504d..6160d5a 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -120,6 +120,7 @@ theme.set_highlights = function(opts) hl(0, "TelescopePromptPrefix", { fg = c.fg, bg = "NONE" }) -- diagnostics + hl(0, "DiagnosticError", { fg = c.error }) hl(0, "DiagnosticDefaultError", { fg = c.error }) hl(0, "DiagnosticUnderlineError", { fg = c.error, undercurl = true, sp = c.error }) hl(0, "DiagnosticSignError", { fg = c.error, bg = c.bg_alt })