Guest User

Untitled

a guest
Mar 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # change default prefix to 'A'
  2. # this allows for tmux usage inside ssh sessions etc
  3. set -g prefix C-a
  4. bind C-a send-prefix
  5. unbind C-b
  6.  
  7. # set scrollback buffer limit to 10k lines
  8. set -g history-limit 10000
  9.  
  10. # enable mouse mode for scrolling through buffer
  11. setw -g mouse on
  12.  
  13. # Start windows and panes at 1, not 0
  14. set -g base-index 1
  15. setw -g pane-base-index 1
  16.  
  17. # Save history the same way bash does
  18. set -g history-file ~/.tmux_history
Add Comment
Please, Sign In to add comment