Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. set -g mouse on
  2.  
  3. bind-key h split-window -h
  4. bind-key v split-window -v
  5.  
  6. bind j select-pane -L
  7. bind k select-pane -D
  8. bind i select-pane -U
  9. bind l select-pane -R
  10.  
  11. #reload tmux
  12. bind r source-file ~/.tmux.conf
  13.  
  14. set -sg escape-time 0
  15.  
  16. # List of plugins
  17. set -g @plugin 'tmux-plugins/tpm'
  18. set -g @plugin 'tmux-plugins/tmux-sensible'
  19. set -g @plugin 'jimeh/tmux-themepack'
  20.  
  21. set -g @themepack 'powerline/double/magenta'
  22. # Other examples:
  23. # set -g @plugin 'github_username/plugin_name'
  24. # set -g @plugin 'git@github.com/user/plugin'
  25. # set -g @plugin 'git@bitbucket.com/user/plugin'
  26.  
  27. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  28. run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement