-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
53 lines (36 loc) · 1.02 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
52
53
set -g focus-events on
set -g escape-time 0
set -g default-terminal 'tmux-256color'
set -as terminal-features ",xterm-256color:RGB"
set -g renumber-windows on
unbind C-b
set -g prefix 'C-\'
setw -g aggressive-resize on
set -g status-bg black
set -g status-fg white
bind | split-window -h -c '#{pane_current_path}'
bind - split-window -v -c '#{pane_current_path}'
unbind h
unbind j
unbind k
unbind l
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind q killp
setw -g mouse off
setw -g mode-keys vi
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind -Tcopy-mode-vi 'v' send -X begin-selection
bind -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "tmux save-buffer - | reattach-to-user-namespace pbcopy"
set-option -g window-status-format ''
set-option -g window-status-current-format ''
set-option -g window-status-separator ''
set-option -g status-left-length 60
set-option -g status-left ' #S:#W'
set-option -g status-right-length 60
set-option -g status-right '#I:#P '