Skip to content

Commit ae19966

Browse files
committed
feat: added support for snacks.nvim
1 parent 52d67cc commit ae19966

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

lua/tokyonight/groups/init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ M.plugins = {
5959
["octo.nvim"] = "octo",
6060
["rainbow-delimiters.nvim"] = "rainbow",
6161
["render-markdown.nvim"] = "render-markdown",
62+
["snacks.nvim"] = "snacks",
6263
["telescope.nvim"] = "telescope",
6364
["trouble.nvim"] = "trouble",
6465
["vim-gitgutter"] = "gitgutter",

lua/tokyonight/groups/snacks.lua

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
local Util = require("tokyonight.util")
2+
3+
local M = {}
4+
5+
M.url = "https://github.com/rcarriga/nvim-notify"
6+
7+
---@type tokyonight.HighlightsFn
8+
function M.get(c, opts)
9+
-- stylua: ignore
10+
return {
11+
SnacksNotifierDebug = { fg = c.fg, bg = opts.transparent and c.none or c.bg },
12+
SnacksNotifierBorderDebug = { fg = Util.blend_bg(c.comment, 0.4), bg = opts.transparent and c.none or c.bg },
13+
SnacksNotifierIconDebug = { fg = c.comment },
14+
SnacksNotifierTitleDebug = { fg = c.comment },
15+
SnacksNotifierError = { fg = c.fg, bg = opts.transparent and c.none or c.bg },
16+
SnacksNotifierBorderError = { fg = Util.blend_bg(c.error, 0.4), bg = opts.transparent and c.none or c.bg },
17+
SnacksNotifierIconError = { fg = c.error },
18+
SnacksNotifierTitleError = { fg = c.error },
19+
SnacksNotifierInfo = { fg = c.fg, bg = opts.transparent and c.none or c.bg },
20+
SnacksNotifierBorderInfo = { fg = Util.blend_bg(c.info, 0.4), bg = opts.transparent and c.none or c.bg },
21+
SnacksNotifierIconInfo = { fg = c.info },
22+
SnacksNotifierTitleInfo = { fg = c.info },
23+
SnacksNotifierTrace = { fg = c.fg, bg = opts.transparent and c.none or c.bg },
24+
SnacksNotifierBorderTrace = { fg = Util.blend_bg(c.purple, 0.4), bg = opts.transparent and c.none or c.bg },
25+
SnacksNotifierIconTrace = { fg = c.purple },
26+
SnacksNotifierTitleTrace = { fg = c.purple },
27+
SnacksNotifierWarn = { fg = c.fg, bg = opts.transparent and c.none or c.bg },
28+
SnacksNotifierBorderWarn = { fg = Util.blend_bg(c.warning, 0.4), bg = opts.transparent and c.none or c.bg },
29+
SnacksNotifierIconWarn = { fg = c.warning },
30+
SnacksNotifierTitleWarn = { fg = c.warning },
31+
}
32+
end
33+
34+
return M

0 commit comments

Comments
 (0)