aboutsummaryrefslogtreecommitdiff
path: root/tmux.conf
blob: d841dae4cff77b1d2b89c505e832aad1b46dfb01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
set-option -g status-position top

unbind C-b
set-option -g prefix C-s
bind-key C-s send-prefix

unbind x
bind-key x display-panes

unbind q
bind-key q kill-pane 

unbind \"
unbind %

bind-key S swap-pane -U

bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R

bind-key H split-window -h
bind-key V split-window -v

unbind c
bind-key e new-window

bind-key c copy-mode
bind-key v paste-buffer

bind-key o kill-session