From 6b1ff550dd51798261b5c93aee04a1ea0eaf234f Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sun, 26 Mar 2023 12:29:27 -0400 Subject: [PATCH] tmux: Enable mouse support --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 0dfbd82..703dd8c 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -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}"