Skip to content

Commit

Permalink
fix: add NotifyBackground missing highlight (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
vihu committed Mar 11, 2024
1 parent a408e6b commit a4eb88b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lua/nightfox/group/modules/notify.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ function M.get(spec, config, opts)
NotifyDEBUGTitle = { fg = spec.diag.hint },
NotifyTRACETitle = { fg = spec.syntax.comment },

NotifyERRORIcon = { link = "NotifyERRORTitle" },
NotifyWARNIcon = { link = "NotifyWARNTitle" },
NotifyINFOIcon = { link = "NotifyINFOTitle" },
NotifyDEBUGIcon = { link = "NotifyDEBUGTitle" },
NotifyTRACEIcon = { link = "NotifyTRACETitle" },
NotifyERRORIcon = { link = "NotifyERRORTitle" },
NotifyWARNIcon = { link = "NotifyWARNTitle" },
NotifyINFOIcon = { link = "NotifyINFOTitle" },
NotifyDEBUGIcon = { link = "NotifyDEBUGTitle" },
NotifyTRACEIcon = { link = "NotifyTRACETitle" },
NotifyBackground = { link = "NormalFloat" },
}
end

Expand Down

0 comments on commit a4eb88b

Please sign in to comment.