Add support for icons in nvim-notify

This commit is contained in:
Fernando Schauenburg 2025-03-19 18:53:09 +01:00
parent 4ffcbf314f
commit e55dfcf1b7

View file

@ -728,9 +728,16 @@ M.highlights = function()
-- 'rcarriga/nvim-notify' -- 'rcarriga/nvim-notify'
nvim_notify = { nvim_notify = {
NotifyBackground = { fg = fg, bg = bg },
NotifyLogTitle = { fg = C.purple }, NotifyLogTitle = { fg = C.purple },
NotifyLogTime = { link = 'Comment' }, NotifyLogTime = { link = 'Comment' },
NotifyTRACEIcon = { link = 'DiagnosticInfo' },
NotifyDEBUGIcon = { link = 'DiagnosticHint' },
NotifyINFOIcon = { link = 'DiagnosticOk' },
NotifyWARNIcon = { link = 'DiagnosticWarn' },
NotifyERRORIcon = { link = 'DiagnosticError' },
NotifyTRACETitle = { link = 'DiagnosticInfo' }, NotifyTRACETitle = { link = 'DiagnosticInfo' },
NotifyDEBUGTitle = { link = 'DiagnosticHint' }, NotifyDEBUGTitle = { link = 'DiagnosticHint' },
NotifyINFOTitle = { link = 'DiagnosticOk' }, NotifyINFOTitle = { link = 'DiagnosticOk' },