From d6dfbe4659faf8fb64e7a763df8ef8134daa2a22 Mon Sep 17 00:00:00 2001 From: Niverton Date: Sat, 8 Mar 2025 21:20:11 +0100 Subject: [PATCH] chore(notify): silence missing bg hl warning --- lua/astrobox/highlights/modules/nvim-notify.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/astrobox/highlights/modules/nvim-notify.lua b/lua/astrobox/highlights/modules/nvim-notify.lua index b97d18c..7fcb8a4 100644 --- a/lua/astrobox/highlights/modules/nvim-notify.lua +++ b/lua/astrobox/highlights/modules/nvim-notify.lua @@ -2,21 +2,26 @@ ---@param palette Palette return function(theme, palette) return { + NotifyBackground = { link = "Normal" }, + NotifyERRORBorder = theme.msg.error, NotifyWARNBorder = theme.msg.warning, NotifyINFOBorder = theme.msg.info, NotifyDEBUGBorder = theme.msg.hint, NotifyTRACEBorder = theme.msg.error, + NotifyERRORIcon = { link = "NotifyERRORBorder" }, NotifyWARNIcon = { link = "NotifyWARNBorder" }, NotifyINFOIcon = { link = "NotifyINFOBorder" }, NotifyDEBUGIcon = { link = "NotifyDEBUGBorder" }, NotifyTRACEIcon = { link = "NotifyTRACEBorder" }, + NotifyERRORTitle = { link = "NotifyERRORBorder" }, NotifyWARNTitle = { link = "NotifyWARNBorder" }, NotifyINFOTitle = { link = "NotifyINFOBorder" }, NotifyDEBUGTitle = { link = "NotifyDEBUGBorder" }, NotifyTRACETitle = { link = "NotifyTRACEBorder" }, + NotifyERRORBody = { link = "Normal" }, NotifyWARNBody = { link = "Normal" }, NotifyINFOBody = { link = "Normal" },