Advertisement
s4ros

tmux.conf

Oct 12th, 2022
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # Make it use C-a, similar to screen..
  2. unbind C-b
  3. unbind l
  4. set -g prefix C-a
  5.  
  6. bind R source-file ~/.tmux.conf; display-message " Config reloaded!"
  7.  
  8. set-option -g automatic-rename on
  9.  
  10. # Use Alt-arrow keys without prefix key to switch panes
  11. bind -n M-Left select-pane -L
  12. bind -n M-Right select-pane -R
  13. bind -n M-Up select-pane -U
  14. bind -n M-Down select-pane -D
  15.  
  16. # Shift arrow to switch windows
  17. bind -n S-Left previous-window
  18. bind -n S-Right next-window
  19.  
  20. # No delay for escape key press
  21. set -sg escape-time 0
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement