-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
37 lines (31 loc) · 1.11 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
set -sg escape-time 0
set -g default-terminal "screen-256color"
set -g default-shell /usr/bin/zsh
set-option -g history-limit 10000
# allow mouse to select panes
set-option -g mouse on
#set-option -g mode-mouse on
#set-option -g mouse-resize-pane on
#set-option -g mouse-select-pane on
#set-option -g mouse-select-window on
set-option -g base-index 1
set-window -g pane-base-index 1
bind End select-pane -D
bind Home select-pane -U
bind-key e send-keys "eval $(tmux show-environment -s)" Enter
#bind-key -t emacs-copy WheelUpPane halfpage-up
#bind-key -t emacs-copy WheelDownPane halfpage-down
#bind-key -t vi-copy WheelUpPane halfpage-up
#bind-key -t vi-copy WheelDownPane halfpage-down
#set -g status-utf8 on
#set -g status-keys vi
set -g status-interval 1
set -g status-attr bright
set -g status-fg white
set -g status-bg black
set -g status-left-length 20
set -g status-left '#[fg=green][#[fg=red]#S#[fg=green]]#[default]'
set -g status-justify centre
set -g status-right '#[fg=green][ %Y-%m-%d %H:%M:%S ]#[default]'
#setw -g window-status-current-format '#[fg=yellow](#I.#P#F#W)#[default]'
#setw -g window-status-format '#I#F#W'