Skip to content

Commit

Permalink
[#1] Add: settings tmuxinator
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Jan 17, 2017
1 parent 2a6474d commit 850b24e
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions etc/tmuxinator/dgnest-dockerfiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# ~/.tmuxinator/dgnest-dockerfiles.yml
name: dgnest-dockerfiles
root: <%= ENV["PROJECTS"] %>/docker/dgnest/dockerfiles
tmux_options: -2
# Optional tmux socket
# socket_name: foo

# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
pre:
- make environment

# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247

# 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: logs

# Controls whether the tmux session should be attached to automatically. Defaults to true.
# attach: false

# Runs after everything. Use it to attach to tmux with custom options etc.
# post: tmux -CC attach -t dockerfiles

windows:
- editor:
layout: even-horizontal
panes:
- editor:
- pyenv activate dgnest-dockerfiles
- <%= ENV["EDITOR"] %>
- docker:
- pyenv activate dgnest-dockerfiles
- docker:
- pyenv activate dgnest-dockerfiles
- python:
layout: main-vertical
panes:
- python:
- pyenv activate dgnest-dockerfiles
- ipython
- databases:
layout: main-vertical
panes:
- local:
- pyenv activate dgnest-dockerfiles
- test:
- pyenv activate dgnest-dockerfiles
- docker:
layout: main-vertical
panes:
- code:
- pyenv activate dgnest-dockerfiles
- test:
- pyenv activate dgnest-dockerfiles

0 comments on commit 850b24e

Please sign in to comment.