-
Notifications
You must be signed in to change notification settings - Fork 0
/
term.kdl
44 lines (44 loc) · 915 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 size="60%" {
command "lazygit"
focus true
}
pane split_direction="vertical" size="40%" {
pane {
command "just"
args "watch"
}
pane {
command "npm"
args "install"
}
}
// pane split_direction="vertical" {
// pane {
// command "docker"
// args "compose" "up"
// cwd "./docker"
// }
// pane {
// cwd "./docker"
// }
// }
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="term" {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
pane
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
}