forked from tmux-python/tmuxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmuxp.json
41 lines (41 loc) · 834 Bytes
/
.tmuxp.json
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
{
"session_name": "tmuxp",
"start_directory": "./",
"before_script": "./.tmuxp-before-script.sh",
"shell_command_before": [
"[ -f .venv/bin/activate ] && source .venv/bin/activate && reset"
],
"windows": [
{
"window_name": "tmuxp",
"focus": true,
"layout": "main-horizontal",
"options": {
"main-pane-height": 35
},
"panes": [
{
"focus": true
},
"pane",
"make watch_test"
]
},
{
"window_name": "docs",
"layout": "main-horizontal",
"options": {
"main-pane-height": 35
},
"start_directory": "docs/",
"panes": [
{
"focus": true
},
"pane",
"make serve",
"make SPHINXBUILD='poetry run sphinx-build' watch"
]
}
]
}