Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. set -sg escape-time 1
  2. set -g prefix C-a
  3. set -g base-index 1
  4. set -g pane-base-index 1
  5. bind | split-window -h
  6. bind - split-window -v
  7. bind r source-file ~/.tmux.conf \; display "Configuration Reloaded"
  8. bind C-a send-prefix
  9. bind h select-pane -L
  10. bind j select-pane -D
  11. bind k select-pane -U
  12. bind l select-pane -R
  13. bind -r C-h select-window -t :-
  14. bind -r C-l select-window -t :+
  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. set -g default-terminal "screen-256color"
  20. setw -g monitor-activity on
  21. set -g visual-activity on
  22. bind-key -n C-k send-keys "clear && tmux clear-history; history -d $((\$HISTCMD-1))" \; send-keys "Enter"
  23. set -g mouse on
  24. bind -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M"
  25. bind -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; send-keys -M"
  26.  
  27. #############################################################
  28. # Tmux Plugin Manager #
  29. #############################################################
  30. # List of plugins
  31. set -g @plugin 'tmux-plugins/tpm'
  32. set -g @plugin 'tmux-plugins/tmux-sensible'
  33. set -g @plugin 'tmux-plugins/tmux-resurrect'
  34. set -g @plugin 'tmux-plugins/tmux-continuum'
  35. set -g @plugin 'jimeh/tmux-themepack'
  36.  
  37. # Other examples:
  38. # set -g @plugin 'github_username/plugin_name'
  39. # set -g @plugin 'git@github.com/user/plugin'
  40. # set -g @plugin 'git@bitbucket.com/user/plugin'
  41.  
  42.  
  43.  
  44.  
  45. set -g @themepack 'double/cyanm'
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  56. run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement