dotfiles/data/tmux/tmux.conf

18 lines
336 B
Plaintext
Raw Normal View History

2021-06-22 19:08:11 +00:00
# Change prefix
set -g prefix C-a
unbind C-b
bind C-a send-prefix
2021-06-24 15:24:56 +00:00
# Split panes using | and -
bind | split-window -h
bind - split-window -v
# Switch panes using Alt
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
2021-06-22 19:08:11 +00:00
set -g default-terminal "tmux-256color"