aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-01-14 12:50:12 +0100
committerThomas Schmucker <ts@its1.de>2026-01-14 12:50:12 +0100
commit28a63da650901fef8ba2480d7a085ea4a3acb8df (patch)
treeb2865c88bbe8df2a4ee453be93e84edd3b3e0a62 /tmux/tmux.conf
parentfbcb16d2116842b7e6394635c5da97b10e8c83ea (diff)
downloaddotfiles-28a63da650901fef8ba2480d7a085ea4a3acb8df.tar.gz
dotfiles-28a63da650901fef8ba2480d7a085ea4a3acb8df.tar.bz2
dotfiles-28a63da650901fef8ba2480d7a085ea4a3acb8df.zip
tmux: Benutze die kürzeren alias Befehle
Diffstat (limited to 'tmux/tmux.conf')
-rw-r--r--tmux/tmux.conf12
1 files changed, 6 insertions, 6 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 6e2dc0d..8a9fa3b 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -19,14 +19,14 @@ set -g window-status-current-style fg=white,bg=brightblue,bold
19set -g mode-keys vi 19set -g mode-keys vi
20set -g focus-events on 20set -g focus-events on
21 21
22bind h select-pane -L 22bind h selectp -L
23bind j select-pane -D 23bind j selectp -D
24bind k select-pane -U 24bind k selectp -U
25bind l select-pane -R 25bind l selectp -R
26 26
27bind m set -g mouse \; display "mouse #{?mouse,ON,OFF}" 27bind m set -g mouse \; display "mouse #{?mouse,ON,OFF}"
28bind C-t set -g status 28bind C-t set -g status
29bind r source ~/.config/tmux/tmux.conf \; display-message "configuration reloaded" 29bind r source ~/.config/tmux/tmux.conf \; display-message "configuration reloaded"
30 30
31bind % split-window -h -c "#{pane_current_path}" 31bind % splitw -h -c "#{pane_current_path}"
32bind '"' split-window -c "#{pane_current_path}" 32bind '"' splitw -c "#{pane_current_path}"