-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
27 lines (19 loc) · 869 Bytes
/
.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
set -g display-panes-time 4000
set -g display-time 5000
set -g escape-time 200
set-option -g set-titles on
set-option -g set-titles-string "#{pane_current_path} | #T | #S | #W"
set-option -g default-terminal "screen-256color"
set-window-option -g mode-keys vi
bind-key '"' split-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key - split-window -c "#{pane_current_path}"
bind-key | split-window -h -c "#{pane_current_path}"
bind-key -r C-k select-pane -U
bind-key -r C-j select-pane -D
bind-key -r C-h select-pane -L
bind-key -r C-l select-pane -R
bind-key C-[ copy-mode
bind-key C-] paste-buffer
bind-key y set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized,on,off}"
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xsel -i --clipboard"