mirror of
https://github.com/gabehf/base46.git
synced 2026-03-14 01:37:03 -07:00
Merge pull request #101 from shashanktomar/notify-integration
add integration for notify plugin
This commit is contained in:
commit
b9f7d41da3
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