Guest User

Untitled

a guest
Apr 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. set -g prefix C-a
  2. bind C-a send-prefix
  3. unbind C-b
  4. setw -g mode-mouse off
  5. setw -g mode-keys vi
  6. set -g status-utf8 on
  7. bind r source-file ~/.tmux.conf \; display "Reloaded!"
  8.  
  9. bind | split-window -h
  10. bind - split-window -v
  11. bind h select-pane -L
  12. bind j select-pane -D
  13. bind k select-pane -U
  14. bind l select-pane -R
  15. bind -r H resize-pane -L 5
  16. bind -r J resize-pane -D 5
  17. bind -r K resize-pane -U 5
  18. bind -r L resize-pane -R 5
  19.  
  20. bind -r C-h select-window -t :-
  21. bind -r C-l select-window -t :+
  22.  
  23. set -sg escape-time 1
  24.  
  25. set -g base-index 1
  26. set -g pane-base-index 1
  27.  
  28. set -g status-fg white
  29. set -g status-bg black
  30. setw -g window-status-fg cyan
  31. setw -g window-status-bg default
  32. setw -g window-status-attr dim
  33. setw -g window-status-current-fg white
  34. setw -g window-status-current-bg red
  35. setw -g window-status-current-attr bright
  36.  
  37. set -g pane-border-fg green
  38. set -g pane-border-bg black
  39. # set -g pane-active-border-fg white
  40. # set -g pane-active-border-bg yellow
  41.  
  42. set -g message-fg white
  43. set -g message-bg black
  44. set -g message-attr bright
  45.  
  46. set -g status-left-length 40
  47. set -g status-left "#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P"
  48. set -g status-right "#[fg-cyan]%d %b %R"
  49. set -g status-justify centre
  50.  
  51. setw -g monitor-activity on
  52. set -g visual-activity on
  53.  
  54. unbind [
  55. bind Escape copy-mode
  56. unbind p
  57. bind p paste-buffer
  58. bind -t vi-copy 'v' begin-selection
  59. bind -t vi-copy 'y' copy-selection
Add Comment
Please, Sign In to add comment