Advertisement
candale

Tmuxinator config

Jan 22nd, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. # ~/.tmuxinator/bowst.yml
  2.  
  3. name: bowst
  4. root: /media/andrei/storage/workspace/
  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. - server:
  23. layout: main-vertical
  24. panes:
  25. - cd rdscookbook && clear && vagrant up && vagrant ssh
  26. - git:
  27. layout: main-vertical
  28. panes:
  29. - cd cocoon && clear
  30. - shell:
  31. layout: main-vertical
  32. panes:
  33. - cd rdscookbook && clear
  34. - ssh:
  35. layout: main-vertical
  36. panes:
  37. - cd rdscookbook && clear
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement