-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtmux.conf
More file actions
37 lines (26 loc) · 737 Bytes
/
tmux.conf
File metadata and controls
37 lines (26 loc) · 737 Bytes
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
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc"
# use prefix + I to install plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# set -g @plugin 'jimeh/tmux-themepack'
# change themes
# set -g @themepack 'basic'
unbind C-b
set -g prefix C-a
bind C-a send-prefix
bind-key C-a last-window
bind-key a send-prefix
bind-key b set status
bind s split-window -v
bind v split-window -h
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set -g mouse
# set-window-option -g window-status-current-style bg=blue
set -g status-left ''
set -g status-right ''
run '~/.tmux/plugins/tpm/tpm'