-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
lazy.lua
30 lines (26 loc) · 964 Bytes
/
lazy.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
local M = {}
--- Get extension configuration
--- @param opts Config
--- @param t CyberdreamPalette
function M.get(opts, t)
opts = opts or {}
local highlights = {
LazyH1 = { fg = t.blue, bold = true },
LazyH2 = { fg = t.fg, bold = true },
LazyButton = { fg = t.fg, bg = t.bgHighlight },
LazyButtonActive = { fg = t.fg, bg = t.bgHighlight, bold = true },
LazyProgressDone = { bold = true, fg = t.magenta },
LazyProgressTodo = { bold = true, fg = t.grey },
LazyReasonCmd = { fg = t.yellow },
LazyReasonEvent = { fg = t.magenta },
LazyReasonKeys = { fg = t.cyan },
LazyReasonPlugin = { fg = t.green },
LazyReasonRequire = { fg = t.orange },
LazyReasonRuntime = { fg = t.red },
LazyReasonStart = { fg = t.blue },
LazySpecial = { fg = t.cyan },
Bold = { fg = t.grey, bold = true, italic = true },
}
return highlights
end
return M