-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.lua
66 lines (57 loc) · 1.14 KB
/
settings.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
local colors = require("colors")
return {
paddings = 3,
group_paddings = 6,
group_spacing = 4,
bar = {
height = 36,
margin = 0,
padding = 0,
blur_radius = 0,
corner_radius = 0,
margin_padding = 18,
},
bracket = {
height = 28,
border_width = 1,
corner_radius = 4,
color = colors.theme.bracket.bg,
border_color = colors.theme.bracket.border,
},
item = {
height = 26,
padding = 6,
corner_radius = 4,
spacing = 4,
},
popup = {
border_width = 2,
border_radius = 4,
blur_radius = 6,
y_offset = 0,
padding = 16,
image_padding = 0,
},
icons = "nerdfont", -- alternatively available: NerdFont
-- This is a font configuration for SF Pro and SF Mono (installed manually)
font = {
-- default = {},
text = "SF Pro", -- Used for text
numbers = "SF Mono", -- Used for numbers
icons = "Symbols Nerd Font Mono", -- Used for icons
-- Font style map
style_map = {
["Regular"] = "Regular",
["Semibold"] = "Semibold",
["Bold"] = "Bold",
["Heavy"] = "Heavy",
["Black"] = "Black",
},
-- Font size map
size_map = {
["Small"] = 12.0,
["Medium"] = 14.0,
["Large"] = 16.0,
},
},
}