Guest User

Untitled

a guest
Nov 19th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. # Enable mouse support
  2. set -g mouse on
  3.  
  4. # Start tab numbering at 1
  5. set -g base-index 1
  6. set-window-option -g pane-base-index 1
  7.  
  8. set -g history-limit 100000
  9.  
  10. bind r source-file ~/.tmux.conf
  11.  
  12. setw -g monitor-activity on
  13.  
  14. set -g status-interval 1
  15. set -g status-left-length 30
  16. set -g status-right-length 160
  17. set -g status-left '[#S #I] '
  18. set -g status-right '#{pane_current_path} | #W | #(whoami)@#h | %Y-%m-%d %l:%M %p'
  19.  
  20. ## color setting
  21. set -g status-bg "#373b41"
  22. set -g status-fg "#c5c8c6"
  23.  
  24. setw -g window-status-activity-fg "#c5c8c6"
  25. setw -g window-status-activity-bg "#373b41"
  26. setw -g window-status-activity-attr bold
  27.  
  28. setw -g window-status-current-fg "#282a2e"
  29. setw -g window-status-current-bg "#81a2be"
  30. set -g window-status-current-attr default
  31.  
  32. set -g pane-active-border-bg default
  33. set -g pane-active-border-fg "#373b41"
  34. set -g pane-border-bg default
  35. set -g pane-border-fg "#373b41"
  36.  
  37. set -g clock-mode-colour "#81a2be"
  38. set -g clock-mode-style 24
  39.  
  40. set -g message-bg "#8abeb7"
  41. set -g message-fg "#000000"
  42.  
  43. set -g message-command-bg "#8abeb7"
  44. set -g message-command-fg "#000000"
  45.  
  46. set -g mode-bg "#8abeb7"
  47. set -g mode-fg "#000000"
Add Comment
Please, Sign In to add comment