dotfiles/config/tmux/tmux.conf

20 lines
496 B
Plaintext

# https://github.com/tmux/tmux/wiki/FAQ
# Switch panes using Alt without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Color
set -g default-terminal "tmux-256color"
# https://github.com/tmux-plugins/tpm
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'