dotfiles/tmux/.tmux.conf
2023-04-17 21:00:34 +02:00

17 lines
379 B
Bash

set -g mouse on
# Open new windows with the same directory
unbind c
bind c new-window -c "#{pane_current_path}"
# Binds
unbind '"'
unbind %
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v "#{pane_current_path}"
# Alt-arrow switching
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