-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
39 lines (31 loc) · 901 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
30
31
32
33
34
35
36
37
38
# rename your terminals
set -g set-titles on
set -g set-titles-string '#(whoami)@#h [#(curl ipecho.net/plain;echo)]'
# Highlight active window
set-window-option -g window-status-current-fg white
set-window-option -g window-status-fg colour240
# enable utf-8
# set -g status-utf8 on
# set 256-color term
set -g default-terminal "screen-256color"
# 24 hour clock, please
set -g clock-mode-style 24
# status bar customization
set -g status-bg black
set -g status-fg white
set -g status-interval 5
set -g status-left-length 90
set -g status-right-length 60
set -g status-left '##[fg=cyan]#(whoami) >> '
set -g status-justify left
set -g status-right '#[fg=cyan]#S #[fg=white]%d %b %R'
# Remap window navigation to vim
unbind-key j
bind-key j select-pane -D
unbind-key k
bind-key k select-pane -U
unbind-key h
bind-key h select-pane -L
unbind-key l
bind-key l select-pane -R
# vim: set ft=config: