Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. unbind '"'
  2. unbind '%'
  3. bind _ split-window -v
  4. bind | split-window -h
  5.  
  6. set -g status-interval 1
  7. set -g status-justify centre
  8. set -g status-keys vi
  9. set -g status-position top
  10. set -g base-index 1
  11. set -g renumber-windows on
  12. set -g mouse-resize-pane on
  13. set -g mouse-select-pane on
  14. set -g mouse-select-window on
  15. set -g repeat-time 1000
  16.  
  17. set -g pane-border-style bg=black
  18. set -ag pane-border-style fg=white
  19. set -g pane-active-border-style bg=black
  20. set -ag pane-active-border-style fg=brightblue
  21.  
  22. set -g status-style bg=black
  23. set -ag status-style fg=white
  24. set -g message-style bg=black
  25. set -ag message-style fg=white
  26.  
  27. set -g status-left-length 20
  28. set -g status-left " #S"
  29. set -g status-left-style bg=black
  30. set -ag status-left-style fg=white
  31.  
  32. set -g status-right-length 20
  33. set -g status-right "#(date +%H:%M:%S) "
  34. set -g status-right-style bg=black
  35. set -ag status-right-style fg=white
  36.  
  37. set -g window-status-current-style bg=blue
  38. set -ag window-status-current-style fg=white
  39. set -g window-status-format " #I:#W "
  40. set -g window-status-current-format " #I:#W "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement