From 299637c7cc4bdc353bcb0092e93541e6c471edc1 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 27 May 2021 17:43:33 +0200 Subject: [PATCH] tmux: use C-space as prefix Turns out C-b is quite useful for navigation in vim and other programs. Also, the C-space issue seems to only happen when using Alacritty and WSL, so I'll just avoid this combination for now. --- files/tmux.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/tmux.conf b/files/tmux.conf index 2382680..96a055b 100644 --- a/files/tmux.conf +++ b/files/tmux.conf @@ -1,7 +1,8 @@ # # Key bindings # -bind-key C-b send-prefix +set -g prefix C-space +bind C-space send-prefix # Open new windows/panes with the path in current pane bind c new-window -c '#{pane_current_path}'