Sha256: 4bd186419378068ef6ea32c614e89c5d4a599a42dbcbbd83d25497d1448152cc

Contents?: true

Size: 955 Bytes

Versions: 4

Compression:

Stored size: 955 Bytes

Contents

# ~/.tmuxinator/sample.yml
# you can make as many tabs as you wish...

name: sample
root: ~/test
socket_name: foo # Remove to use default socket
pre: sudo /etc/rc.d/mysqld start # Runs before everything
pre_window: rbenv shell 2.0.0-p247 # Runs in each tab and pane
tmux_options: -f ~/.tmux.mac.conf # Pass arguments to tmux
windows:
  - editor:
      pre:
        - echo "I get run in each pane, before each pane command!"
        -
      layout: main-vertical
      panes:
        - vim
        - #empty, will just run plain bash
        - top
  - shell: git pull
  - guard:
      layout: tiled
      pre:
        - echo "I get run in each pane."
        - echo "Before each pane command!"
      panes:
        -
        - #empty, will just run plain bash
        -
  - database: bundle exec rails db
  - server: bundle exec rails s
  - logs: tail -f log/development.log
  - console: bundle exec rails c
  - capistrano:
  - server: ssh user@example.com

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tmuxinator-0.6.5 spec/fixtures/sample.yml
tmuxinator-0.6.4 spec/fixtures/sample.yml
tmuxinator-0.6.3 spec/fixtures/sample.yml
tmuxinator-0.6.2 spec/fixtures/sample.yml