mirror of
https://github.com/tmuxinator/tmuxinator.git
synced 2026-07-18 06:02:37 -05:00
22 lines
416 B
YAML
22 lines
416 B
YAML
# ~/.tmuxinator/sample.yml
|
|
# you can make as many tabs as you wish...
|
|
|
|
defaults: &defaults
|
|
pre:
|
|
- echo "alias_is_working"
|
|
|
|
name: sample_alias
|
|
root: ~/test
|
|
windows:
|
|
- editor:
|
|
<<: *defaults
|
|
layout: main-vertical
|
|
panes:
|
|
- vim
|
|
- #empty, will just run plain bash
|
|
- top
|
|
- pane_with_multiple_commands:
|
|
- ssh server
|
|
- echo "Hello"
|
|
- guard:
|