blob: 60612eaed19ef6296142d76b366078e48683264d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
set -g prefix C-x
bind-key a send-prefix # for nested tmux sessions
# use support - set to on if you want to use the mouse
setw -g mouse on
# Set the default terminal mode to 256color mode
set -g default-terminal "screen-256color"
bind-key -T prefix v split-window -h
bind-key -T prefix h split-window
bind-key -T prefix C-c confirm-before -p "kill-window #W? (y/n)" kill-window
|