Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. setw -g mode-mouse on
  2. set -g mouse-select-window on
  3. set -g mouse-select-pane on
  4. set -g mouse-resize-pane on
  5.  
  6. # set window list colors - red for active and cyan for inactive
  7. set-window-option -g window-status-fg brightblue #base0
  8. set-window-option -g window-status-bg colour236
  9. set-window-option -g window-status-attr dim
  10.  
  11. set-window-option -g window-status-current-fg brightred #orange
  12. set-window-option -g window-status-current-bg colour236
  13. set-window-option -g window-status-current-attr bright
  14.  
  15. # start window numbering at 1
  16. set -g base-index 1
  17.  
  18. # enable UTF-8 encoding
  19. setw -g utf8 on
  20. set -g status-utf8 on
  21.  
  22. # enable 256 colors in the terminal
  23. set -g default-terminal "screen-256color"
  24.  
  25. # movement of windows with < and >
  26. bind -r < swap-window -t -1
  27. bind -r > swap-window -t +1
  28.  
  29. # Make PREFIX + 0 go to window 10
  30. bind 0 select-window -t :10
  31.  
  32. # Make PREFIX + R reload tmux config
  33. bind R source-file ~/.tmux.conf \; display "Configuration reloaded."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement