-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
51 lines (37 loc) · 1.13 KB
/
.tmux.conf
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
set -g default-terminal "screen-256color"
set -g prefix C-a
set -sg escape-time 1
set -g base-index 1
set -g pane-base-index 1
bind r source-file ~/dotfiles/tmux.conf \; display "config reloaded"
bind | split-window -h
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -n S-Left resize-pane -L 5
bind -n S-Down resize-pane -D 5
bind -n S-Up resize-pane -U 5
bind -n S-Right resize-pane -R 5
setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
set -g status-utf8 on
set -g status-interval 60
set -g status-justify centre
setw -g monitor-activity on
set -g visual-activity on
setw -g mode-keys vi
setw -g status-fg white
setw -g status-bg colour233
setw -g window-status-fg colour63
setw -g window-status-bg default
setw -g window-status-attr dim
set -g window-status-current-fg white
set -g window-status-current-bg colour88
set -g window-status-current-attr bright
# Linux clipboard support
bind C-p run "tmux set-buffer \"$(xclip -o -sel clip)\"; tmux paste-buffer"
bind C-y run "tmux show-buffer - | xclip -i -sel clip"