Add support for plugin 'rcarriga/nvim-notify'

This commit is contained in:
Fernando Schauenburg 2024-02-19 11:10:35 +01:00
parent 93f33fc9bc
commit e7adfd5cb8

View file

@ -716,6 +716,24 @@ M.highlights = function()
FidgetTitle = { link = 'Title' }, FidgetTitle = { link = 'Title' },
FidgetTask = { link = 'String' }, FidgetTask = { link = 'String' },
}, },
-- 'rcarriga/nvim-notify'
nvim_notify = {
NotifyLogTitle = { fg = C.purple },
NotifyLogTime = { link = 'Comment' },
NotifyTRACETitle = { link = 'DiagnosticInfo' },
NotifyDEBUGTitle = { link = 'DiagnosticHint' },
NotifyINFOTitle = { link = 'DiagnosticOk' },
NotifyWARNTitle = { link = 'DiagnosticWarn' },
NotifyERRORTitle = { link = 'DiagnosticError' },
NotifyTRACEBorder = { link = 'DiagnosticInfo' },
NotifyDEBUGBorder = { link = 'DiagnosticHint' },
NotifyINFOBorder = { link = 'DiagnosticOk' },
NotifyWARNBorder = { link = 'DiagnosticWarn' },
NotifyERRORBorder = { link = 'DiagnosticError' },
},
} }
end end