From 1662420bdc01e32ece0f904a58b28d3e28916dcf Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Mon, 21 Oct 2024 14:06:59 +0300 Subject: [PATCH] Tmux: Move prefix to C-[. --- home/config/tmux/module/Config.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/config/tmux/module/Config.nix b/home/config/tmux/module/Config.nix index 4b7d83f..3b7f4a7 100644 --- a/home/config/tmux/module/Config.nix +++ b/home/config/tmux/module/Config.nix @@ -2,6 +2,8 @@ { text = '' unbind-key C-b + set-option -g prefix C-[ + bind-key C-[ send-prefix bind -n M-r source-file ~/.config/tmux/tmux.conf ''; }