From 14cbf5f050c468c0cda01a35f4369094a884be77 Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Fri, 1 May 2026 23:28:47 +0300 Subject: [PATCH] fix(tmux): enable focus events --- .config/tmux/conf.tmux | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/tmux/conf.tmux b/.config/tmux/conf.tmux index dddec04e..4747494f 100644 --- a/.config/tmux/conf.tmux +++ b/.config/tmux/conf.tmux @@ -42,6 +42,9 @@ bind L clear-history \; send-keys C-l # Enable mouse control set -g mouse on +# Enable focus events to allow tmux to detect when it is focused or unfocused +set -g focus-events on + # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible'