Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. set -g default-terminal "xterm"
  2. set -g status-utf8 on
  3. set -g status-interval 30
  4. set -g status-justify left
  5. setw -g mode-keys vi
  6. bind j select-pane -D
  7. bind k select-pane -U
  8. bind l select-pane -R
  9. bind h select-pane -L
  10. bind r source-file ~/.tmux.conf \; display "tmux.conf reloaded!"
  11. bind | split-window -h
  12. bind - split-window -v
  13. bind-key c-c run "tmux show-buffer | xsel -i -b"
  14. bind-key c-v run "xsel -o | tmux load-buffer -"
  15. setw -g automatic-rename on
  16. setw -g monitor-activity on
  17. set -g visual-activity on
  18. set -g renumber-windows on
  19. set -g mode-mouse on
  20. set -g status-bg black
  21. set -g status-fg white
  22. set -g history-limit 10000
  23. set -g base-index 1
  24. set -g pane-base-index 1
  25. set -s escape-time 0
  26. set -g set-titles on
  27. set -g status-fg colour15
  28. set -g status-bg colour0
  29. set -g window-status-activity-attr bold
  30. set -g pane-border-fg colour245
  31. set -g pane-active-border-fg colour39
  32. set -g message-fg colour16
  33. set -g message-bg colour221
  34. set -g message-attr bold
  35. set -g status-left-length 50
  36. set -g status-right-length 50
  37. set -g status-left '#[fg=colour214,bold]#h:[#S]'
  38. set -g status-right '#[fg=yellow,bold]%H:%M %d-%h-%Y'
  39. set -g window-status-format '#[fg=white,bold,bg=black]#I:#W'
  40. setw -g window-status-current-format "#[fg=white,bold,bg=blue]|#I:#W|"
  41. set-window-option -g window-status-current-fg colour15
  42. set-window-option -g window-status-current-bg red
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement