From d7e71a3dc1b3d613c68d92644ca13a8fae5f7abb Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Fri, 26 Jul 2024 15:40:05 +0200 Subject: [PATCH] feat(tmux): change prefix key to C-Space --- .config/tmux/tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 2d8bb10..ea0fdde 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -167,6 +167,11 @@ set -g set-clipboard on # -r == repeatable # -n == no prefix +# Prefix +set -g prefix C-Space +unbind C-b +bind-key C-Space send-prefix + # Reload config bind-key r source-file ~/.config/tmux/tmux.conf \; display-message "~/.config/tmux/tmux.conf reloaded"