Add support for icons in nvim-notify
This commit is contained in:
parent
4ffcbf314f
commit
e55dfcf1b7
1 changed files with 7 additions and 0 deletions
|
@ -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' },
|
||||||
|
|
Loading…
Add table
Reference in a new issue