From a29b09d15a9ef5cd575fbe5ae2a3cfb854876caf Mon Sep 17 00:00:00 2001 From: Andrew <63322884+winter-again@users.noreply.github.com> Date: Tue, 5 Mar 2024 09:47:17 -0500 Subject: [PATCH] feat: add highlight groups for folke/trouble.nvim (#248) --- lua/rose-pine.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 40ba83e..649fa99 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -727,6 +727,11 @@ local function set_highlights() -- folke/noice.nvim NoiceCursor = { fg = palette.highlight_high, bg = palette.text }, + -- folke/trouble.nvim + TroubleText = { fg = palette.subtle }, + TroubleCount = { fg = palette.iris, bg = palette.surface }, + TroubleNormal = { fg = palette.text, bg = groups.panel }, + -- echasnovski/mini.clue MiniClueTitle = { bg = groups.panel, bold = styles.bold },