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
|
local bg = "rgba(282828d9)"
local fg = "rgb(ebdbb2)"
local fg1 = "rgb(a89984)"
hl.config({
plugin = {
hy3 = {
node_collapse_policy = 0,
tab_first_window = false,
group_inset = 5,
tabs = {
from_top = false,
height = 25,
radius = 10,
text_font = "JetBrainsMono Nerd Font",
text_height = 12,
colors = {
active_border = fg,
active_text = fg,
active = bg,
focused_border = fg,
focused_text = fg,
focused = bg,
urgent_border = fg,
urgent_text = fg,
urgent = bg,
inactive_border = fg1,
inactive_text = fg,
inactive = bg
}
},
autotile = {
enable = true
}
}
}
})
|