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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# -> git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# -> tmux source .tmux.conf
# prefix + I to install plugins
bind r source-file ~/.tmux.conf \; display-message "Config reloaded"
set -g mouse on
set -s escape-time 0
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
setw -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
bind -n S-Left previous-window
bind -n S-Right next-window
set -g @continuum-restore 'on'
set -g @resurrect-capture-pane-contents 'on'
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'
set -g @plugin 'jaclu/tmux-menus'
set -g status-style bg="#151515",fg="#888888"
set -g status-justify left
set -g status-left "#[fg=#1e1e2e,bg=#c9de95,bold] #S #[fg=#c9de95,bg=#151515,nobold] "
set -g status-left-length 20
set -g status-right ""
setw -g window-status-format "#[fg=#888888,bg=#222222] #I:#W "
setw -g window-status-current-format "#[fg=#c9de95,bg=#333333,bold] #I:#W "
set -g pane-border-style fg="#333333"
set -g pane-active-border-style fg="#c9de95"
set -g message-style bg="#c9de95",fg="#151515",bold
set -g mode-style bg="#c9de95",fg="#151515",bold
set -g menu-selection-style bg="#c9de95",fg="#151515"
run '~/.tmux/plugins/tpm/tpm'
|