-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
34 lines (28 loc) · 1.1 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
#run-shell "powerline-daemon -q"
set -g default-terminal "screen-256color"
set-option -g history-limit 99999
# remap prefix to Control + a
set -g prefix C-a
# bind 'C-a C-a' to type 'C-a'
bind C-a send-prefix
unbind C-b
bind P paste-buffer
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-selection
bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
# Tmux Plugin Manager
# git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'jaclu/tmux-menus'
# prefix + Ctrl-s - save
# prefix + Ctrl-r - restore
set -g @plugin 'iggredible/tmux-colorful'
set -g @tmux_colorful_plugins "cpu battery date time"
set -g @tmux_colorful_color_scheme 'https://coolors.co/1d2f6f-8390fa-fac748-f9e9ec-f88dad'
set -g @tmux_colorful_date_format '%F'
set -g @tmux_colorful_time_format '%X'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
# prefix + I to install new plugins