comparison lib/pmuxinator/assets/sample.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 lib/tmuxinator/assets/sample.yml@39b72942a4d2
children
comparison
equal deleted inserted replaced
1:107d94e009cc 2:67a6071afec7
1 # ~/.pmuxinator/<%= name %>.yml
2
3 name: <%= name %>
4 root: ~/
5
6 # Optional tmux socket
7 # socket_name: foo
8
9 # Runs before everything. Use it to start daemons etc.
10 # pre: sudo /etc/rc.d/mysqld start
11
12 # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
13 # pre_window: rbenv shell 2.0.0-p247
14
15 # Pass command line options to tmux. Useful for specifying a different tmux.conf.
16 # tmux_options: -f ~/.tmux.mac.conf
17
18 # Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
19 # tmux_command: byobu
20
21 windows:
22 - editor:
23 layout: main-vertical
24 panes:
25 - vim
26 - guard
27 - server: bundle exec rails s
28 - logs: tail -f log/development.log