diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-11-10 15:27:42 +0100 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-10 15:27:42 +0100 | 
| commit | 8382337d3efeda8cf01526054c647e5988c47141 (patch) | |
| tree | 6e2c4b83d0decd6ac3c96a4ed33bd99fbc74715a /.config/tmux | |
| parent | 39642a92cbb324d747d18edc02de73e702b6a224 (diff) | |
tmux: Go back to the C-b prefix
Diffstat (limited to '.config/tmux')
| -rw-r--r-- | .config/tmux/tmux.conf | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index c3d6788..f06f5fd 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -23,11 +23,6 @@ set -ga terminal-overrides ',xterm-256color:Tc'  # Removes the need for numbers by the window names  set -g renumber-windows on -# Change the prefix -set -g prefix C-Space -unbind C-b -bind C-Space send-prefix -  # Make killing the whole thing easier  bind q kill-session @@ -37,3 +32,5 @@ set -g mouse on  # Quickly switch windows  bind -n C-w previous-window  bind -n C-e next-window + +bind C-w send -l ''  |