-
Notifications
You must be signed in to change notification settings - Fork 3
/
.tmux.conf
32 lines (24 loc) · 834 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
set -g prefix C-x
setw -g aggressive-resize on
bind-key C-a last-window
set -g base-index 1
bind-key a send-prefix
set-window-option -g window-status-current-style bg=red
set-window-option -g window-status-style fg=colour244
set-window-option -g window-status-style bg=default
set-option -g allow-rename off
set-option -ga terminal-overrides ',xterm*:smcup@:rmcup@'
set-window-option -g xterm-keys on
bind -n S-Left previous-window
bind -n S-Right next-window
bind -n S-Up swap-window -t -1
bind -n S-Down swap-window -t +1
set -g history-limit 10000
set -g renumber-windows on
bind C-[ copy-mode
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
run '~/.tmux/plugins/tpm/tpm'
set -g @continuum-restore 'on'