Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. # ステータスバーをトップに配置する
  2. set-option -g status-position top
  3.  
  4. # 左右のステータスバーの長さを決定する
  5. set-option -g status-left-length 90
  6. set-option -g status-right-length 90
  7.  
  8. set-option -g status-left '#H[#P]'
  9.  
  10. set-option -g status-right '#(battery) %Y-%m-%dT%H:%M'
  11.  
  12. set-option -g status-utf8 on
  13.  
  14. set-option -g status-interval 30
  15.  
  16. set-option -g status-justify centre
  17.  
  18. set-option -g status-fg black
  19. set-option -g status-bg white
  20.  
  21. set -g prefix C-q
  22. unbind C-b
  23.  
  24. set-option -g history-limit 5000
  25.  
  26. set-option -g default-terminal screen-256color
  27. set-option -g terminal-overrides 'xterm:colors=256'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement