From c4684c417c1dd7d6030f724a90c65b2ce7f5e7ef Mon Sep 17 00:00:00 2001 From: Allan Deutsch Date: Sat, 3 Aug 2024 02:50:59 -0400 Subject: [PATCH] Update rose-pine.lua The nvim-notify `NotifyBackground` highlight is mapped to `Normal` (see [here](https://github.com/rcarriga/nvim-notify/blob/d333b6f167900f6d9d42a59005d82919830626bf/lua/notify/config/highlights.lua#L5). However, the `Normal.bg` is explicitly set to `"NONE"` in rose-pine which triggers an annoying nvim-notify warning the first time a notification fires in each nvim session. --- lua/rose-pine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 471e57e..30e40ec 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -697,7 +697,7 @@ local function set_highlights() NotifyWARNBorder = make_border(groups.warn), NotifyWARNIcon = { link = "NotifyWARNTitle" }, NotifyWARNTitle = { fg = groups.warn }, - + NotifyBackground = { bg = palette.surface }, -- rcarriga/nvim-dap-ui DapUIBreakpointsCurrentLine = { fg = palette.gold, bold = styles.bold }, DapUIBreakpointsDisabledLine = { fg = palette.muted },