我的tmux配置

来源:互联网 发布:java中md5加密和解密 编辑:程序博客网 时间:2024/05/16 17:02
# 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