-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
37 lines (30 loc) · 944 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
35
36
37
# Modify prefix
set -g prefix C-a
bind C-a send-prefix
unbind C-b
bind-key Tab last-window
set -g base-index 1
set -g pane-base-index 1
set-option -g status-position top
set-option -g repeat-time 0
# continuum options
set -g @continuum-boot 'on'
set -g @continuum-boot-options 'iterm,fullscreen' # start iterm in full screen on system start
set -sg escape-time 0
set-option -g mouse on
# List of plugins
set -g @tpm_plugins ' \
caiogondim/maglev \
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
tmux-plugins/tmux-resurrect \
tmux-plugins/tmux-continuum \
tmux-plugins/tmux-yank \
tmux-plugins/tmux-pain-control \
tmux-plugins/tmux-copycat \
tmux-plugins/tmux-open \
tmux-plugins/tmux-cpu \
nhdaly/tmux-scroll-copy-mode \
'
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'