Advertisement
Guest User

Untitled

a guest
May 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. set -s escape-time 0
  2.  
  3. # set -g prefix C-a
  4. # unbind C-b
  5. bind r source-file ~/.tmux.conf \; display "Reload config file!"
  6. bind h select-pane -L
  7. bind j select-pane -D
  8. bind k select-pane -U
  9. bind l select-pane -R
  10.  
  11. bind H resize-pane -L 5
  12. bind J resize-pane -D 5
  13. bind K resize-pane -U 5
  14. bind L resize-pane -R 5
  15.  
  16. bind -r H resize-pane -L 5
  17. bind -r J resize-pane -D 5
  18. bind -r K resize-pane -U 5
  19. bind -r L resize-pane -R 5
  20.  
  21. set -g default-terminal "xterm-256color"
  22.  
  23. setw -g mouse on
  24.  
  25. # set -g status-justify centre
  26. set -g monitor-activity on
  27. set -g visual-activity on
  28. set-option -g status-right '"#{pane_title}" %H:%M'
  29. set-option -g status-right-length 100
  30. set-option -g status-left-length 200
  31. # set-option -g status-left '[#S]'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement