Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # remap prefix to Control + a
  2. set -g prefix C-a
  3. unbind C-b
  4. bind C-a send-prefix
  5.  
  6. # force a reload of the config file
  7. unbind r
  8. bind r source-file ~/.tmux.conf
  9.  
  10. #manmally reload config file:
  11. #tmux source-file ~/.tmux.conf
  12.  
  13. # quick pane cycling
  14. unbind ^A
  15. bind ^A select-pane -t :.+
  16.  
  17. set -g base-index 1
  18.  
  19. # Scroll history
  20. set -g history-limit 30000
  21.  
  22. # set status bar
  23.  
  24. set -g status-justify left
  25. set -g status-left ""
  26. set -g status-right "#[fg=green] %m-%d-%Y %H:%M #(whoami) "
  27.  
  28. # highlight current windows in status bar
  29. set-window-option -g window-status-current-bg blue
  30.  
  31. # Move around panes in vim style
  32. bind h select-pane -L
  33. bind j select-pane -D
  34. bind k select-pane -U
  35. bind l select-pane -R
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement