tmux_plugin.conf 1013 B

12345678910111213141516171819202122232425262728293031
  1. # TMUX PLUGIN CONFIG
  2. # ---------------------------------------------------------
  3. # README
  4. # put this in ~/.tmux.conf
  5. # initialize with
  6. # tmux source ~/.tmux.conf while running a restart tmux env
  7. # then CTR-B + CTR-I to load plugins
  8. # CTR-B + CTR-S to save CTR-B + CTR-R to load
  9. # ---------------------------------------------------------
  10. set -g default-command /bin/bash
  11. set -g default-shell /bin/bash
  12. set -g default-terminal "xterm-256color"
  13. set -ga terminal-overrides ',xterm-256color:Tc'
  14. set -g pane-border-status bottom
  15. # List of plugins
  16. set -g @plugin 'tmux-plugins/tpm'
  17. set -g @plugin 'tmux-plugins/tmux-sensible'
  18. # Tmux Resurrect
  19. set -g @plugin 'tmux-plugins/tmux-resurrect'
  20. # Other examples:
  21. # set -g @plugin 'github_username/plugin_name'
  22. # set -g @plugin 'github_username/plugin_name#branch'
  23. # set -g @plugin 'git@github.com:user/plugin'
  24. # set -g @plugin 'git@bitbucket.com:user/plugin'
  25. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  26. run '~/.tmux/plugins/tpm/tpm'