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