added todo comments as supported plugin, fixed missing error color

This commit is contained in:
2026-03-15 00:46:53 +01:00
parent b729bc7702
commit 06df433026
2 changed files with 2 additions and 0 deletions

View File

@@ -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 Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [NVIM Ufo](https://github.com/kevinhwang91/nvim-ufo) - [NVIM Ufo](https://github.com/kevinhwang91/nvim-ufo)
- [VIM Illuminate](https://github.com/RRethy/vim-illuminate) - [VIM Illuminate](https://github.com/RRethy/vim-illuminate)
- [Todo Comments](https://github.com/folke/todo-comments.nvim)
- [Wilder](https://github.com/gelguy/wilder.nvim) - [Wilder](https://github.com/gelguy/wilder.nvim)
## Setup ## Setup

View File

@@ -120,6 +120,7 @@ theme.set_highlights = function(opts)
hl(0, "TelescopePromptPrefix", { fg = c.fg, bg = "NONE" }) hl(0, "TelescopePromptPrefix", { fg = c.fg, bg = "NONE" })
-- diagnostics -- diagnostics
hl(0, "DiagnosticError", { fg = c.error })
hl(0, "DiagnosticDefaultError", { fg = c.error }) hl(0, "DiagnosticDefaultError", { fg = c.error })
hl(0, "DiagnosticUnderlineError", { fg = c.error, undercurl = true, sp = c.error }) hl(0, "DiagnosticUnderlineError", { fg = c.error, undercurl = true, sp = c.error })
hl(0, "DiagnosticSignError", { fg = c.error, bg = c.bg_alt }) hl(0, "DiagnosticSignError", { fg = c.error, bg = c.bg_alt })