Update rose-pine.lua

The nvim-notify `NotifyBackground` highlight is mapped to `Normal` (see [here](d333b6f167/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.
This commit is contained in:
Allan Deutsch 2024-08-03 02:50:59 -04:00 committed by GitHub
commit c4684c417c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 },