-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
41 lines (34 loc) · 1.09 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
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g base-index 1
setw -g pane-base-index 1
set -ga terminal-overrides ",xterm-256color:Tc"
set -g history-limit 102400
set -g renumber-windows on
set -g mouse on
# Fix ESC delay in vim
set -g escape-time 10
#Theme
# set -g @plugin "janoamaral/tokyo-night-tmux"
# set -g @tokyo-night-tmux_window_id_style digital
# set -g @tokyo-night-tmux_pane_id_style hsquare
# set -g @tokyo-night-tmux_zoom_id_style dsquare
set -g @resurrect-strategy-nvim 'session'
set -g @continuum-save-interval '5'
set -g @continuum-restore 'on'
set -g @continumm-boot 'on'
set -g status-right 'Continuum status: #{continuum_status}'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
#Navigating between panes
bind -r C-k resize-pane -U
bind -r C-j resize-pane -D
bind -r C-h resize-pane -L
bind -r C-l resize-pane -R
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
# reload config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
#install plugins
run `~/.tmux/plugins/tpm/tpm`