Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # update & install
  2. sudo apt-get update
  3. sudo apt-get install tmux
  4. vim .tmux.conf
  5. # add following lines in .tmux.conf
  6. # set Zsh as your default Tmux shell
  7. set-option -g default-shell /bin/zsh
  8. set -g prefix C-a
  9. unbind C-b
  10. # command delay? We don't want that, make it short
  11. set -sg escape-time 1
  12. # Set the numbering of windows to go from 1 instead
  13. # of 0 - silly programmers :|
  14. set-option -g base-index 1
  15. setw -g pane-base-index 1
  16. # Allow us to reload our Tmux configuration while
  17. # using Tmux
  18. bind r source-file ~/.tmux.conf \; display "Reloaded!"
  19. # Getting interesting now, we use the vertical and horizontal
  20. # symbols to split the screen
  21. bind | split-window -h
  22. bind - split-window -v
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement