From a4eb88b2dad3fba5c2d87f82cd15dfb9de73913d Mon Sep 17 00:00:00 2001 From: Rahul Garg <3199183+vihu@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:58:46 -0600 Subject: [PATCH] fix: add NotifyBackground missing highlight (#422) --- lua/nightfox/group/modules/notify.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lua/nightfox/group/modules/notify.lua b/lua/nightfox/group/modules/notify.lua index 2cd96dbd..0ed201f0 100644 --- a/lua/nightfox/group/modules/notify.lua +++ b/lua/nightfox/group/modules/notify.lua @@ -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