-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
43 lines (33 loc) · 1.01 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
41
42
43
bind r source-file ~/.tmux.conf
set -g set-titles on
# make tmux display things in 256 colors
set -g default-terminal "screen-256color"
# Remap window navigation to vim
setw -g mode-keys vi
#
unbind-key C-j
bind-key -n C-j select-pane -D
unbind-key C-k
bind-key -n C-k select-pane -U
unbind-key C-h
bind-key -n C-h select-pane -L
unbind-key C-l
bind-key -n C-l select-pane -R
# Increase tmux status bar customization
source-file ~/.tmux_status
# Increase the history limit
set-option -g history-limit 10000
# Continuum options
# set -g @continuum-boot 'on'
# set -g @continuum-boot-options 'fullscreen'
# List of plugins
# set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# set -g @plugin 'tmux-plugins/tmux-continuum'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of
# tmux.conf)
run '~/.tmux/plugins/tpm/tpm'