Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # set Ctrl-a as the default prefix key combination
  2. # and unbind C-b to free it up
  3. set -g prefix C-a
  4. unbind C-b
  5.  
  6. # set window and pane index to 1 (0 by default)
  7. set-option -g base-index 1
  8. setw -g pane-base-index 1
  9.  
  10. # use PREFIX | to split window horizontally and PREFIX - to split vertically
  11. bind \ split-window -h
  12. bind - split-window -v
  13.  
  14. # reload ~/.tmux.conf using PREFIX r
  15. bind r source-file ~/.tmux.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement