dotfiles/config/tmux/tmux.conf

23 lines
523 B
Plaintext

# https://github.com/tmux/tmux/wiki/FAQ
# Split panes using | and -
bind | split-window -h
bind - split-window -v
# 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'
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'