-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
.zellij.kdl
32 lines (32 loc) · 877 Bytes
/
.zellij.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
layout {
pane {
split_direction "vertical"
pane name="vjsf" borderless=true {
command "bash"
args "-ic" "nvm use && bash"
}
pane name="run doc" {
command "bash"
args "-ic" "nvm use && npm -w doc run compile-examples && npm -w doc run dev"
}
}
pane {
split_direction "vertical"
pane name="lib tests" {
command "bash"
args "-ic" "nvm use && npm -w lib run test"
}
pane name="lib build" {
command "bash"
args "-ic" "nvm use && npm -w lib run watch:build"
}
pane name="rel deps" {
command "bash"
args "-ic" "nvm use && npx relative-deps watch"
}
}
pane size=2 borderless=true {
command "bash"
args "-ic" "echo -n -e \"Doc dev server available at \\e[1;96mhttp://localhost:3133\\033[0m\""
}
}