Files
dotfiles/tmux.conf

24 lines
670 B
Bash

set -g base-index 1
# run-shell ~/src/tmux-resurrect/resurrect.tmux
bind C-l send-keys 'C-l'
bind r source ~/.tmux.conf\; display "~/.tmux.conf sourced!"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -q @plugin 'tmux-plugins/tmux-sidebar'
# set -g @plugin 'christoomey/vim-tmux-navigator'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'