-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.kdl
60 lines (57 loc) · 1.42 KB
/
workspace.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
layout {
// 'base' swap layout is exactly whatever you define in the actual layout stuff
// first one takes precidence
swap_tiled_layout name="stack" min_panes=2 {
tab {
pane stacked=true {
pane
pane
}
}
}
swap_tiled_layout name="no stack" min_panes=2 {
tab {
pane
}
}
default_tab_template {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
children
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="git / broot" stacked=true {
pane stacked=true {
pane start_suspended=true name="gitui" {
command "gitui"
}
pane start_suspended=true name="broot" {
command "broot"
}
}
}
tab name="helix" focus=true {
pane name="helix" {
command "hx"
args "."
}
}
tab name="shell"{
pane name="zsh"
}
tab name="commands" {
pane stacked=true {
pane start_suspended=true name="cargo run" {
command "cargo"
args "run"
}
pane start_suspended=true name="cargo run --release" {
command "cargo"
args "run" "--release"
}
}
}
}