-
Notifications
You must be signed in to change notification settings - Fork 186
/
term.kdl
44 lines (44 loc) · 993 Bytes
/
term.kdl
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
// https://zellij.dev/documentation/creating-a-layout
layout {
tab name="main" focus=true {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
pane split_direction="vertical" size="60%" {
pane {
command "lazygit"
focus true
}
pane cwd="docker" command="docker" {
args "compose" "up"
start_suspended false
}
}
pane split_direction="vertical" size="40%" {
pane size="25%" {
command "npm"
args "install"
}
pane size="25%" {
command "composer"
args "install"
}
pane size="50%" {
command "npm"
args "run" "watch"
}
}
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="term" {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
pane cwd="docker"
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
}