我的tmux配置

# General Setting
set-option -g prefix C-a
set-window-option -g automatic-rename off
# Statusbar properties.
set -g display-time 3000
set -g status-bg black
set -g status-fg cyan
set -g status-right "#(uptime|awk '{print $11}') #(date)"
set utf8-default on
# Binding key
bind C-a send-prefix
bind s split-window
bind '"' splitw -h
bind -n F1 lock
bind k select-pane -U
bind j select-pane -D
bind h select-pane -L
bind l select-pane -R
bind -n F9 resizep -U 1
bind -n F10 resizep -D 1
bind -n F7 resizep -L 1
bind -n F8 resizep -R 1

你可能感兴趣的:(Date,binding)