From bdeac0ac355fce3895c1e8c5665f9fe33b896a18 Mon Sep 17 00:00:00 2001 From: Gregory Trolliet Date: Fri, 8 Mar 2024 21:28:12 +0100 Subject: [PATCH] [TMUX] Allow mouse to pass through for vim --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index b880982..e553527 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -16,6 +16,9 @@ bind -n M-Down select-pane -D # don't rename windows automatically set-option -g allow-rename off +# allow the mouse use in vim +set -g mouse on + ###################### ### DESIGN CHANGES ### ######################