Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. set -g status-bg black
  2. set -g status-fg white
  3. set -g window-status-current-fg green
  4.  
  5. # Custom modifier key
  6. set -g prefix C-Space
  7. unbind-key C-b
  8. bind-key C-Space send-prefix
  9.  
  10. # Terminal improvements
  11. set -g terminal-overrides "xterm*:XT:smcup@:rmcup@"
  12. set-window-option -g automatic-rename on
  13. set-option -g set-titles on
  14. set -g mouse on
  15. set -g default-terminal screen-256color
  16. set -g status-keys vi
  17. set -g history-limit 10000
  18.  
  19. # Clear scrollback buffer
  20. bind l clear-history
  21.  
  22. # Reload tmux config
  23. bind r source-file ~/.tmux.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement