blob: 6802fe90bfe81bba2ac5b49f2c035fa6b2af39a0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# this allows 'tmux attach' to work without an existing session; like screen -xRR
new-session
# However, we don't want new-session to execute for reloads; so the rest
# of the configuration will go in a separate file that will be sourced
# here.
bind r source-file ~/.tmux.stage2.conf \; display "Reloaded!"
source-file ~/.tmux.stage2.conf
|