-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
41 lines (34 loc) · 1.39 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 default term
set -g default-terminal st-256color
# Remap prefix from 'C-b' to 'C-z'
unbind C-b
set-option -g prefix C-z
bind-key C-z send-prefix
# Set mouse on
set -g mouse on
# statusbar
set -g status-position bottom
set -g status-justify left
set -g status-bg colour0
set -g status-fg colour6
set -g status-attr dim
set -g status-left ''
set -g status-right '#[fg=colour7,bg=colour3,bold] %d/%m #[fg=colour7,bg=colour1,bold] %H:%M:%S '
set -g status-right-length 50
set -g status-left-length 20
setw -g window-status-current-fg colour7
setw -g window-status-current-bg colour2
setw -g window-status-current-attr bold
setw -g window-status-current-format ' #I#[fg=colour249]:#[fg=colour255]#W#[fg=colour249]#F '
setw -g window-status-fg colour4
setw -g window-status-bg colour8
setw -g window-status-attr none
setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
# List of plugins
set -g @plugin 'tmux-plugins/tpm' # Tmux plugin manager
set -g @plugin 'tmux-plugins/tmux-sensible' # Must-have plugin. Don't ask me why
set -g @plugin 'tmux-plugins/tmux-pain-control' # Same with above
set -g @plugin 'MikeDacre/tmux-zsh-vim-titles' # Plugin for managing tmux/zsh/vim title
set -g @plugin 'tmux-plugins/tmux-copycat' # Nice plugin to select output without using mouse
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'