-
Notifications
You must be signed in to change notification settings - Fork 0
/
highlights.lua
34 lines (25 loc) · 878 Bytes
/
highlights.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
31
32
33
34
local M = {
-- Neorg
NeorgCodeBlock = { bg = "black2" },
-- unordered lists
NeorgUnorderedList1 = { fg = "grey" },
NeorgUnorderedList2 = { fg = "grey" },
NeorgUnorderedList3 = { fg = "grey" },
NeorgUnorderedList4 = { fg = "grey" },
NeorgUnorderedList5 = { fg = "grey" },
NeorgUnorderedList6 = { fg = "grey" },
-- headings
NeorgHeading1Title = { fg = "white", bold = true },
NeorgHeading1Prefix = { fg = "white", bold = true },
NeorgHeading4Title = { fg = "blue", bold = true },
NeorgHeading4Prefix = { fg = "blue", bold = true },
NeorgHeading5Title = { fg = "red", bold = true },
NeorgHeading5Prefix = { fg = "red", bold = true },
NeorgHeading6Title = { fg = "purple", bold = true },
NeorgHeading6Prefix = { fg = "purple", bold = true },
NeorgMarkUpBold = {
fg = "red",
bold = true,
},
}
return M