aboutsummaryrefslogtreecommitdiff
path: root/env/.config/tmux
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2025-06-18 18:28:08 -0500
committericeyrazor <iceyrazor@mailfence.com>2025-06-18 18:28:08 -0500
commit7e2e0bdc3a162ce4cdc3d3b5eb7f75c04ed3843d (patch)
treed482f424d8ada38281079ec64ff3c33db6c9c75b /env/.config/tmux
parente5ad2c3cd4566fec0590b6be0b4d195ffd5c8066 (diff)
config changes
Diffstat (limited to 'env/.config/tmux')
-rwxr-xr-xenv/.config/tmux/tmux.conf7
1 files changed, 4 insertions, 3 deletions
diff --git a/env/.config/tmux/tmux.conf b/env/.config/tmux/tmux.conf
index d836f66..d2b4d47 100755
--- a/env/.config/tmux/tmux.conf
+++ b/env/.config/tmux/tmux.conf
@@ -27,11 +27,12 @@ unbind -T copy-mode-vi MouseDragEnd1Pane
# bind r to reload config
unbind r
-bind r source-file ~/.tmux.conf
+bind r source-file ~/.config/tmux/tmux.conf
# start panes and windows 1
set -g base-index 1
set -g pane-base-index 1
+setw -g pane-base-index 1
set -g renumber-windows on # renumber windows when one is closed
# nav rebinds
@@ -48,9 +49,9 @@ bind -r m resize-pane -Z # maximize
# pane joining
bind J switch-client -T pane-management
-bind-key -T pane-management \" command-prompt -p "join pane from:" "join-pane -s '%%' -h"
+bind-key -T pane-management % command-prompt -p "join pane from:" "join-pane -s '%%' -h"
bind-key -T pane-management H command-prompt -p "join pane from:" "join-pane -s '%%' -f -h"
-bind-key -T pane-management % command-prompt -p "join pane from:" "join-pane -s '%%' -v"
+bind-key -T pane-management \" command-prompt -p "join pane from:" "join-pane -s '%%' -v"
bind-key -T pane-management V command-prompt -p "join pane from:" "join-pane -s '%%' -f -v"
bind-key -T pane-management B break-pane
bind-key -T pane-management S command-prompt -p "send pane to:" "join-pane -t '%%'"