view spec/fixtures/sample_wemux.yml @ 2:67a6071afec7

Rename tmuxinator -> pmuxinator $ zmv **/*tmuxinator* **/*pmuxinator* $ gsed -e 's/tmuxinator/pmuxinator/g' -i **/*.* $ gsed -e 's/Tmuxinator/Pmuxinator/g' -i **/*.*
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Mon, 21 Jul 2014 08:32:00 +0900
parents 39b72942a4d2
children
line wrap: on
line source

# ~/.pmuxinator/sample_wemux.yml
# you can make as many tabs as you wish...

name: sample
root: ~/test
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
tmux_command: wemux
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
    - git merge
  - 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