Advertisement
Guest User

Untitled

a guest
Aug 28th, 2012
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Make it use C-a, similar to screen..
  2. unbind C-b
  3. unbind l
  4. set -g prefix C-a
  5. bind-key C-a last-window
  6.  
  7. # Reload key
  8. bind r source-file ~/.tmux.conf
  9.  
  10. set -g default-terminal "screen-256color"
  11. set -g history-limit 1000
  12.  
  13. # THEME
  14. set -g status-bg red
  15. set -g status-fg white
  16. set -g status-interval 60
  17. set -g status-left-length 30
  18. set -g status-right '#[fg=white]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=white]%H:%M#[default]'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement