-
Notifications
You must be signed in to change notification settings - Fork 2
/
workspace.kdl
69 lines (66 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
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 stacked=true {
pane name="helix" {
command "hx"
args "."
}
pane start_suspended=true name="notes" {
command "hx"
args "notes.md"
}
}
}
tab name="commands" {
pane stacked=true {
pane start_suspended=true name="run" {
command "zsh"
args "-ic" "cargo build && game"
}
pane start_suspended=true name="run-release" {
command "zsh"
args "-ic" "cargo build --release --no-default-features && game-release"
}
pane start_suspended=true name="renderdoc" {
command "renderdoc"
}
}
}
tab name="shell"{
pane name="zsh"
}
}