-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
37 lines (29 loc) · 1.13 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
# enable mouse support for tmux
set-option -g mouse on
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
# setup tmux plugin mnager
set -g @plugin 'tmux-plugins/tpm'
# install the rest of the user plugins
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'tmux-plugins/tmux-open'
# set nord theme for tmux
set -g @plugin "arcticicestudio/nord-tmux"
# Start Window Numbering at 1
set -g base-index 1
setw -g pane-base-index 1
# set how long to show pane numbers
set -g display-panes-time 2000 # (which is 2sec)
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
# to install tpm run: git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
run -b '~/.tmux/plugins/tpm/tpm'
# Reset prefix to C-a ; C-b is too hard to reach
set -g prefix C-a
bind-key a send-prefix # for nested tmux sessions
unbind C-b # unbind default leader key