tmux 的設置

tmux的配置文件是~/.tmux.confcode

unbind C-b                                                                                                                 
set -g prefix C-a 
# bind a reload key
bind R source-file ~/.tmux.conf \; display-message "Config reloaded"

# status bar
# color
set -g status-bg black
set -g status-fg white
# alignment
set-option -g status-justify centre
# left bottom corner
set-option -g status-left '#[bg=black,fg=green][#[fg=cyan]#S#[fg=green]]'
set-option -g status-left-length 20
# windown list
setw -g automatic-rename on
set-window-option -g window-status-format '#[dim]#I:#[default]#W#[fg=grey,dim]'
set-window-option -g window-status-current-format '#[fg=cyan,bold]#I#[fg=blue]:#[fg=cyan]#W#[fg=dim]'
# right bottom corner
set -g status-right "\"#H\"%Y-%m-%d %H:%M:%S"
  • 解綁C-b的前綴鍵
  • 設定全局前綴鍵爲C-a
  • 綁定按鍵R(大寫)爲裝載.tmux.conf文件,這樣就不用退出再進入tmux了
  • 設置狀態欄的背景爲黑色
  • 設置狀態欄的前景爲白色
  • 設置狀態欄的對齊爲居中
  • 設置狀態欄的左側顯示
  • 設置狀態欄的左側顯示長度爲20字符
  • 設置窗口自動更名(根據運行的程序)
  • 設置狀態欄的窗口名稱顯示格式
  • 設置狀態欄的當前窗口名稱顯示格式
  • 設置狀態欄的右側顯示
相關文章
相關標籤/搜索