summaryrefslogtreecommitdiff
path: root/lua/onedarker/Notify.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-03-24 15:48:33 +0100
committerkylo252 <[email protected]>2022-03-24 15:48:33 +0100
commitf41edc6dfb0d2a4c9875da08bbbdab121e52048f (patch)
treec6541278c6314e58d991bc95e547e903ac58340a /lua/onedarker/Notify.lua
parent5ee460fdc751a91cdf7a4f4aab2ab784ebdb36fd (diff)
parent1ea836e3601b7ed0ed0496888dc14683bfbcce75 (diff)
Merge remote-tracking branch 'origin/rolling'1.1.3
Diffstat (limited to 'lua/onedarker/Notify.lua')
-rw-r--r--lua/onedarker/Notify.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/lua/onedarker/Notify.lua b/lua/onedarker/Notify.lua
deleted file mode 100644
index 4eebc00e..00000000
--- a/lua/onedarker/Notify.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local Notify = {
- NotifyERRORBorder = { fg = C.error_red },
- NotifyWARNBorder = { fg = C.warning_orange },
- NotifyINFOBorder = { fg = C.green },
- NotifyDEBUGBorder = { fg = C.purple_test },
- NotifyTRACEBorder = { fg = C.purple },
- NotifyERRORIcon = { fg = C.error_red },
- NotifyWARNIcon = { fg = C.warning_orange },
- NotifyINFOIcon = { fg = C.green },
- NotifyDEBUGIcon = { fg = C.purple_test },
- NotifyTRACEIcon = { fg = C.purple },
- NotifyERRORTitle = { fg = C.error_red },
- NotifyWARNTitle = { fg = C.warning_orange },
- NotifyINFOTitle = { fg = C.green },
- NotifyDEBUGTitle = { fg = C.purple_test },
- NotifyTRACETitle = { fg = C.purple },
- NotifyERRORBody = { fg = C.fg },
- NotifyWARNBody = { fg = C.fg },
- NotifyINFOBody = { fg = C.fg },
- NotifyDEBUGBody = { fg = C.fg },
- NotifyTRACEBody = { fg = C.fg },
-}
-
-return Notify