forked from tmux-python/tmuxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmuxp.json
41 lines (41 loc) · 826 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
{
"before_script": "pipenv install --dev --skip-lock",
"windows": [
{
"panes": [
{
"focus": true
},
"pane",
"make watch_test"
],
"layout": "main-horizontal",
"options": {
"main-pane-height": 35
},
"focus": true,
"window_name": "tmuxp"
},
{
"panes": [
{
"focus": true
},
"pane",
"make serve",
"make watch"
],
"start_directory": "doc/",
"layout": "main-horizontal",
"window_name": "docs",
"options": {
"main-pane-height": 35
}
}
],
"session_name": "tmuxp",
"start_directory": "./",
"shell_command_before": [
"[ -d `pipenv --venv` ] && source `pipenv --venv`/bin/activate && reset"
]
}