forked from luismayta/pre-commit-mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmuxinator.yml
54 lines (42 loc) · 1.36 KB
/
.tmuxinator.yml
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
# ~/.tmuxinator/pre-commit-mypy.yml
name: pre-commit-mypy
root: ./
# Optional tmux socket
# socket_name: foo
# Note that the pre and post options have been deprecated and will be replaced by
# project hooks.
# Project hooks
# Runs on project start, always
on_project_start: make environment
# Run on project start, the first time
# on_project_first_start: command
# Run on project start, after the first time
# on_project_restart: command
# Run on project exit ( detaching from tmux session )
on_project_exit: make docker.down
# Run on project stop
on_project_stop: make docker.down
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
pre_window: pipenv shell --fancy
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
startup_window: docker
windows:
- editor:
layout: even-horizontal
panes:
- editor:
- pwd:
- pwd:
- python:
layout: main-vertical
panes:
- ipython:
- docker:
layout: main-vertical
panes:
- webserver:
- databases: