-
Notifications
You must be signed in to change notification settings - Fork 4
/
.tmux.conf
34 lines (28 loc) · 946 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
27
28
29
30
31
32
33
34
set -g prefix ^Q
unbind ^b
bind a send-prefix
set-option -g base-index 1
set-window-option -g mode-keys vi
set-window-option -g pane-base-index 1
set -g default-terminal "screen-256color"
set -g focus-events on
set -g set-titles on
set -g status-keys emacs
set -g set-titles-string '#I:#W'
set -g @resurrect-processes 'ssh htop rtorrent'
set -g @themepack 'double/orange'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-sessionist'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'jimeh/tmux-themepack'
run-shell '~/.tmux/plugins/tpm/tpm'
bind -Tcopy-mode-vi v send -X begin-selection
bind -Tcopy-mode-vi y send -X copy-pipe "xclip -selection clipboard"
# bind -Tcopy-mode-vi y send -X copy-selection-and-cancel
bind \ splitw -h
bind ^k resizep -U 10
bind ^j resizep -D 10
bind ^h resizep -L 10
bind ^l resizep -R 10