aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-07-12 17:51:47 +0200
committerThomas Schmucker <ts@its1.de>2023-07-12 17:51:47 +0200
commit1da3b6897973cb7ccda1629ed0417435606c212e (patch)
tree8b2fcf48b26a357676d0445563d937e152896c7a
parente883e8e6ba90a7a585e9e21ef825bd97dc30ffb0 (diff)
downloaddotfiles-1da3b6897973cb7ccda1629ed0417435606c212e.tar.gz
dotfiles-1da3b6897973cb7ccda1629ed0417435606c212e.tar.bz2
dotfiles-1da3b6897973cb7ccda1629ed0417435606c212e.zip
Bessere (alternative) Keybindings für Tmux
-rw-r--r--tmux/tmux.conf8
1 files changed, 2 insertions, 6 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index f09ed9f..df0934b 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -17,18 +17,14 @@ set -g window-status-current-style fg=white,bg=blue,bold
17set -g mode-keys vi 17set -g mode-keys vi
18set -g focus-events on 18set -g focus-events on
19 19
20bind -n C-S-Left previous-window 20bind -r Tab next-window
21bind -n C-S-Right next-window 21bind -r BTab previous-window
22 22
23bind h select-pane -L 23bind h select-pane -L
24bind j select-pane -D 24bind j select-pane -D
25bind k select-pane -U 25bind k select-pane -U
26bind l select-pane -R 26bind l select-pane -R
27 27
28bind '"' split-window -v -c "#{pane_current_path}"
29bind % split-window -h -c "#{pane_current_path}"
30bind c new-window -c "~"
31
32bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}" 28bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}"
33bind C-t set -g status 29bind C-t set -g status
34bind r source ~/.config/tmux/tmux.conf \; display-message "Config reloaded" 30bind r source ~/.config/tmux/tmux.conf \; display-message "Config reloaded"