Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # Escape time
  2. set -sg escape-time 0
  3.  
  4. # Large history
  5. set-option -g history-limit 10000
  6.  
  7. # Leave messages on screen for 4 seconds
  8. set-option -g display-time 4000
  9.  
  10. # Copy mode colors
  11. setw -g mode-bg yellow
  12. setw -g mode-fg black
  13.  
  14. # Terminal
  15. set-option -g default-terminal "screen-256color" #"xterm-256color" # "screen-256color"
  16.  
  17. # Vim stuff
  18. set-window-option -g xterm-keys on
  19. set-window-option -g mode-keys vi
  20. set-option -g status-keys vi
  21.  
  22. # Start window numbering at 1
  23. set -g base-index 1
  24.  
  25. # Current window indication
  26. set-window-option -g window-status-current-bg red
  27.  
  28. # Use bind key and vim motion to move between panes
  29. bind-key h select-pane -L
  30. bind-key j select-pane -D
  31. bind-key k select-pane -U
  32. bind-key l select-pane -R
  33.  
  34. # Toggle last window
  35. bind-key l last-window
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement