Skip to content

Instantly share code, notes, and snippets.

@sethetter
Created July 2, 2014 22:46
Show Gist options
  • Select an option

  • Save sethetter/b68a9a791fc57ff66017 to your computer and use it in GitHub Desktop.

Select an option

Save sethetter/b68a9a791fc57ff66017 to your computer and use it in GitHub Desktop.
# ~/.tmuxinator/balanced-comp.yml
name: balanced-comp
root: ~/code/balanced-comp
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# 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
windows:
- editor: vim
- shell:
layout: even-vertical
panes:
- git status
- guard
- console:
layout: main-horizontal
panes:
- bundle exec rails c
- bundle exec rails db
- server: foreman-start-dev
- logs: tail -f log/development.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment