forked from seejohnrun/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
34 lines (27 loc) · 886 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
# for pbcopy
set-option -g default-command "reattach-to-user-namespace -l /opt/boxen/homebrew/bin/zsh"
# auto window title
set-window-option -g automatic-rename on
set-option -g set-titles on
# monitor
setw -g monitor-activity on
# turn off delay on escape key
set -sg escape-time 0
# theme :)
set -g status-bg blue
set -g status-fg white
set -g window-status-current-bg white
set -g window-status-current-fg blue
set -g window-status-current-attr bold
set -g status-interval 60
set -g status-left-length 30
set -g status-left '#[fg=yellow](#S) #(whoami)'
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] @ %H:%M#[default]'
set -g pane-border-bg blue
set -g pane-border-fg blue
set -g pane-active-border-bg cyan
set -g pane-active-border-fg cyan
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R