-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
26 lines (20 loc) · 953 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
set -g base-index 1
setw -g pane-base-index 1
set -g mouse on
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:RGB"
set-option -g status-style fg=colour136,bg=colour235
set -sg escape-time 20
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
set-option -g status-position top
set-option -g status-right-length 140
set-option -g status-right-style default
set-option -g status-right "#[fg=green,bg=default,bright]#(tmux-mem-cpu-load -a 0)"
set-option -ag status-right " #[fg=default,bg=default]%a %l:%M:%S %p#[default] #[fg=blue]%Y-%m-%d #[fg=default]#H "
set-window-option -g window-status-style fg=colour244
set-window-option -g window-status-style bg=default
set-window-option -g window-status-current-style fg=colour166
set-window-option -g window-status-current-style bg=default
set-option -g history-limit 5000