Skip to content

Commit 1fab3f2

Browse files
A-Lamiamehalter
authored andcommitted
feat(lazy): initial lazy support
1 parent 9f1e321 commit 1fab3f2

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

lua/astrotheme/groups/plugins/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ return {
77
["gitsigns.nvim"] = "gitsigns",
88
["hop.nvim"] = "hop",
99
["indent-blankline.nvim"] = "indent-blankline",
10+
["lazy.nvim"] = "lazy",
1011
["lightspeed.nvim"] = "lightspeed",
1112
["neo-tree.nvim"] = "neo-tree",
1213
["nvim-cmp"] = "nvim-cmp",
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
local function callback()
2+
return {
3+
LazyH1 = { fg = C.ui.base, bg = C.ui.accent, bold = true, italic = true }, -- home button
4+
LazyH2 = { fg = C.ui.accent, bold = true }, -- titles
5+
LazyComment = { link = "Comment" },
6+
LazyNormal = { link = "NormalFloat" },
7+
LazyCommit = { fg = C.ui.text_inactive, bold = true }, -- commit ref
8+
LazyCommitIssue = { fg = C.ui.yellow },
9+
LazyCommitType = { fg = C.ui.accent, bold = true }, -- conventional commit type
10+
LazyCommitScope = { italic = true }, -- conventional commit scope
11+
LazyDimmed = { link = "Conceal" }, -- property
12+
LazyProp = { link = "Conceal" }, -- property
13+
LazyValue = { fg = C.ui.green }, -- value of a property
14+
LazyNoCond = { link = "DiagnosticWarn" }, -- unloaded icon for a plugin where `cond()` was false
15+
LazyLocal = { fg = C.ui.yellow },
16+
LazyProgressDone = { fg = C.ui.green }, -- progress bar done
17+
LazyProgressTodo = { link = "LineNr" }, -- progress bar todo
18+
LazySpecial = { fg = C.ui.blue },
19+
LazyReasonRuntime = { fg = C.ui.yellow },
20+
LazyReasonPlugin = { fg = C.ui.blue },
21+
LazyReasonEvent = { fg = C.ui.yellow },
22+
LazyReasonKeys = { fg = C.ui.purple },
23+
LazyReasonStart = { fg = C.ui.red },
24+
LazyReasonSource = { fg = C.ui.green },
25+
LazyReasonFt = { fg = C.ui.cyan },
26+
LazyReasonCmd = { fg = C.ui.orange },
27+
LazyReasonImport = { fg = C.ui.text },
28+
LazyButton = { link = "CursorLine" },
29+
LazyButtonActive = { link = "Visual" },
30+
LazyTaskOutput = { fg = C.ui.text }, -- task output
31+
LazyTaskError = { fg = C.ui.red }, -- task errors
32+
LazyDir = { fg = C.ui.orange }, -- directory
33+
LazyUrl = { fg = C.ui.blue, underline = true }, -- url
34+
}
35+
end
36+
37+
return callback

0 commit comments

Comments
 (0)