forked from briancain/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtmux.conf
29 lines (23 loc) · 868 Bytes
/
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
# General config
set-option -g utf8 on
set -g history-limit 10000
set -g default-terminal "screen-256color"
# Bindings
bind r source-file ~/.tmux.conf
# Status config
set-option -g status on
set-option -g status-interval 2
set-option -g status-utf8 on
set-option -g status-fg colour255
set-option -g status-bg colour238
set -g status-interval 2
set -g status-right "#S #[fg=colour255,bg=colour238]#(tmux-mem-cpu-load --colors --interval 2 --powerline-right)#[default]"
set -g status-right-length 60
# List of plugins
#set -g @plugin 'tmux-plugins/tpm'
#set -g @plugin 'tmux-plugins/tmux-resurrect'
#set -g @plugin 'tmux-plugins/tmux-continuum'
# last saved environment is automatically restored when tmux is started.
#set -g @continuum-restore 'on'
# initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
#run '~/.tmux/plugins/tpm/tpm'