disable default prefix tmux
This commit is contained in:
parent
db8ba3a680
commit
70f2a505c2
10
.tmux.conf
10
.tmux.conf
|
@ -1,8 +1,12 @@
|
|||
# thanks to this awesome guide: https://thevaluable.dev/tmux-config-mouseless/ (visited 2023-02-04
|
||||
|
||||
# make ctrl-space the prefix. Keep ctrl-b as an alternative.
|
||||
#unbind C-b
|
||||
set -g prefix2 C-Space
|
||||
# make ctrl-space the prefix. Unbind default ctrl-b
|
||||
set -g prefix C-Space
|
||||
set -g prefix C-Space
|
||||
unbind -T prefix C-b
|
||||
unbind -n C-b
|
||||
unbind C-b
|
||||
bind-key -n C-b send-keys C-b
|
||||
|
||||
# enable using the mouse
|
||||
set -g mouse on
|
||||
|
|
Loading…
Reference in New Issue