mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 07:28:50 -07:00
add integration for notify plugin
This commit is contained in:
parent
39cdabaad2
commit
76221ce448
1 changed files with 19 additions and 0 deletions
19
lua/base46/integrations/notify.lua
Normal file
19
lua/base46/integrations/notify.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
local colors = require("base46").get_theme_tb "base_30"
|
||||
|
||||
return {
|
||||
NotifyERRORBorder = { fg = colors.red },
|
||||
NotifyERRORIcon = { fg = colors.red },
|
||||
NotifyERRORTitle = { fg = colors.red },
|
||||
NotifyWARNBorder = { fg = colors.orange },
|
||||
NotifyWARNIcon = { fg = colors.orange },
|
||||
NotifyWARNTitle = { fg = colors.orange },
|
||||
NotifyINFOBorder = { fg = colors.green },
|
||||
NotifyINFOIcon = { fg = colors.green },
|
||||
NotifyINFOTitle = { fg = colors.green },
|
||||
NotifyDEBUGBorder = { fg = colors.grey },
|
||||
NotifyDEBUGIcon = { fg = colors.grey },
|
||||
NotifyDEBUGTitle = { fg = colors.grey },
|
||||
NotifyTRACEBorder = { fg = colors.purple },
|
||||
NotifyTRACEIcon = { fg = colors.purple },
|
||||
NotifyTRACETitle = { fg = colors.purple },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue