forked from scottmckendry/cyberdream.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.lua
26 lines (24 loc) · 809 Bytes
/
dashboard.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
local M = {}
--- Get extension configuration
--- @param opts Config
--- @param t CyberdreamPalette
function M.get(opts, t)
opts = opts or {}
local highlights = {
DashboardHeader = { fg = t.purple },
DashboardFooter = { fg = t.cyan },
DashboardShortCut = { fg = t.orange },
DashboardDesc = { fg = t.orange },
DashboardKey = { fg = t.green },
DashboardIcon = { fg = t.blue },
DashboardProjectTitle = { fg = t.blue },
DashboardProjectTitleIcon = { fg = t.orange },
DashboardProjectIcon = { fg = t.orange },
DashboardMruTitle = { fg = t.blue },
DashboardMruIcon = { fg = t.orange },
DashboardFiles = { fg = t.cyan },
DashboardShortCutIcon = { fg = t.pink },
}
return highlights
end
return M