-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
40 lines (40 loc) · 1.48 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
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins.tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
setw -g monitor-activity off
bind -n M-H previous-window
bind -n M-L next-window
bind f run-shell 'cd "#{pane_current_path}" && fzf --tmux'
set -s escape-time 0
set-option -sa terminal-overrides ",xterms*:Tc"
run '~/.tmux/plugins/tpm/tpm'
unbind C-b
set -g prefix C-a
bind C-a send-prefix
set -g mouse on
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
bind '"' split-window -v -c "#{pane_current_path}"
set-option -g allow-passthrough on
bind % split-window -h -c "#{pane_current_path}"
#set -g @continuum-restore 'on'
#set -g @continuum-boot 'on'
set -g @resurrect-strategy-nvim 'session'
set -g @resurrect-capture-pane-contents 'on'
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
setw -g window-status-current-format ' #[fg=colour4,bold]|#[fg=#6c99bb]#W#[fg=colour4]| '
setw -g window-status-format '#[fg=color8]|#[fg=#6c99bb]#W#[fg=color8]|'
set-option -g status-left "#[fg=#6c99bb,bold] #(hostname) "
set -g status-right '#[fg=#6c99bb,bold] %H:%M:%S '
set-option -g status-style bg=default
set -wg mode-style bg='#383838',fg='#dddddd'
run '~/.tmux/plugins/tpm/tpm'