-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
40 lines (34 loc) · 1.12 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
# change prefix to ctrl+s
unbind C-b
set -g prefix C-s
bind C-s send-prefix
set -g mouse on
set-option -g status-position top
set -g history-limit 10000
# Start windows and panes at 1, not 0
set -g base-index 1
set -g pane-base-index 1
# Removes delays
set -sg escape-time 0
set-option -g repeat-time 0
# options for better-mouse-mode
set -g @emulate-scroll-for-no-mouse-alternate-buffer "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-battery \
tmux-plugins/tmux-cpu \
tmux-plugins/tmux-prefix-highlight \
christoomey/vim-tmux-navigator \
nhdaly/tmux-better-mouse-mode \
'
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'