-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzellij-layout.kdl
More file actions
65 lines (60 loc) · 1.64 KB
/
zellij-layout.kdl
File metadata and controls
65 lines (60 loc) · 1.64 KB
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
layout {
default_tab_template {
// the default zellij tab-bar and status bar plugins
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
children
pane size=2 borderless=true {
plugin location="zellij:status-bar"
}
}
tab name="Zenodotus" focus=true split_direction="vertical" {
pane command="bin/rails" {
args "server" "-p" "3000" "-b" "0.0.0.0"
}
pane {
command "bundle"
args "exec" "sidekiq"
}
}
tab split_direction="horizontal" name="Background" {
pane command="redis-server"
// pane {
// command "neo4j"
// args "console"
// }
}
tab split_direction="vertical" name="Grigori" {
pane {
command "bin/rails"
args "server" "-p" "3001" "-b" "0.0.0.0"
cwd "~/Repositories/Reporters_Lab/grigori"
}
pane {
command "bundle"
args "exec" "rake" "solid_queue:start"
cwd "~/Repositories/Reporters_Lab/grigori"
}
}
tab split_direction="horizontal" name="Proxies" {
pane {
command "ngrok"
args "start" "--config=./ngrok.yml" "--all"
}
pane {
command "conda"
args "activate" "py39" "&&" "python3" "~/pagekite.py"
}
}
tab split_direction="horizontal" name="Compilers" {
pane {
command "bin/rails"
args "tailwindcss:watch"
}
pane {
command "bin/rails"
args "dartsass:watch"
}
}
}