diff --git a/data/tmux/tmux.conf b/data/tmux/tmux.conf index fef8b9f..65755e4 100644 --- a/data/tmux/tmux.conf +++ b/data/tmux/tmux.conf @@ -3,4 +3,15 @@ set -g prefix C-a unbind C-b bind C-a send-prefix +# 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 set -g default-terminal "tmux-256color"