tmux: Enable mouse support

This commit is contained in:
Adam Goldsmith 2023-03-26 12:29:27 -04:00
parent 530f1d9729
commit 6b1ff550dd
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ set -g prefix C-z
unbind C-b
bind C-z send-prefix
# enable mouse support
set -g mouse on
# open new panes in current directory
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"