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
63
|
# Increase the scrollback
set -g history-limit 5000
# Screen-like prefix.
set -g prefix C-a
bind-key C-a last-window
bind-key a send-prefix
# Better bindings for window split
unbind % # Remove default binding since we’re replacing
bind | split-window -h
bind - split-window -v
# Customize the status bars.
set-option -g status-style bg=default
set -g status-fg colour232
set -g status-left-length 24
set -g status-left '#[fg=green]#[fg=colour232, bg=green]#S#[fg=green, bg=default] #[default]'
setw -g window-status-current-format '#[fg=magenta]#[fg=white, bg=magenta]#{window_index}:#{window_name}#[fg=magenta, bg=default]#[default]'
setw -g window-status-format '#[fg=white]#[fg=colour232, bg=white]#{window_index}:#{window_name}#[fg=white, bg=default]#[default]'
set -g status-right '#[fg=green]#[fg=colour232, bg=green]#(bash ~/.dotfiles/tmux-segments/short-uptime)#[fg=green, bg=default] '
set -g status-right-length 70
# Better powerline highlighting.
set-window-option -g window-status-activity-style bold,underscore
# Set Activity monitoring.
setw -g monitor-activity on
set -g visual-activity on
# Vi keys in copy mode.
setw -g mode-keys vi
bind -r k run-shell 'tmux select-pane -U'
bind -r j run-shell 'tmux select-pane -D'
bind -r h run-shell 'tmux select-pane -L'
bind -r l run-shell 'tmux select-pane -R'
# Popup window
bind -r ` display-popup -b heavy -E -w 60% -h 60% -S fg=blue -T '#[bold]#[reverse]#{?window_zoomed_flag,Z:,}UTILITY#[default]'
# Mouse Mode
set -g mouse on
# Set color mode.
set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
# Pane Style
set -g pane-border-status top
set -g pane-active-border-style fg=green
set -g pane-border-format '#[bold]#[reverse]#{?window_zoomed_flag,Z:,}#{pane_current_command}#[default]'
set -g pane-border-lines double
set -g pane-scrollbars modal
set -g pane-scrollbars-style fg=blue,bg=lightgray
set-hook -g after-resize-pane 'if -F "#{window_zoomed_flag}" "set pane-active-border-style fg=red" "set pane-active-border-style fg=green"'
# Terminal Title
set -g set-titles on
set -g set-titles-string ' #{session_name}'
# Clock
set -g clock-mode-style 24-with-seconds
|