tmux.conf 602 B

123456789101112131415161718192021
  1. set -g mouse on
  2. # List of plugins
  3. set -g @plugin 'tmux-plugins/tpm'
  4. set -g @plugin 'tmux-plugins/tmux-sensible'
  5. set -g @plugin 'christoomey/vim-tmux-navigator'
  6. # Clear the pane and it's history
  7. bind -n C-k send-keys C-l \; clear-history
  8. # C-l is taken over by vim style pane navigation
  9. bind C-l send-keys 'C-l'
  10. # try to use correct colors
  11. set -g default-terminal screen-256color
  12. # reload tmux config
  13. bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
  14. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  15. run '~/.dotfiles/external/tpm/tpm'