aboutsummaryrefslogtreecommitdiff
path: root/tmux.conf
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-04-17 02:56:33 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-04-17 02:56:33 +0200
commitfeff893a109345d9c21a3d6cd703a27f0de5ab61 (patch)
treefc7851498f815689154ce7ff5526bd2007806903 /tmux.conf
parent6275f6df735bcbd7e745bc318014108b0f5cc9b0 (diff)
downloaddotfiles-feff893a109345d9c21a3d6cd703a27f0de5ab61.tar.gz
Added tmux arrow swtich fix
Diffstat (limited to 'tmux.conf')
-rw-r--r--tmux.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf
index c888d91..22bd2b5 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -25,3 +25,10 @@ set -g pane-border-style fg=#222222
25# Other settings 25# Other settings
26set-option -sg escape-time 10 26set-option -sg escape-time 10
27set-option -g mouse off 27set-option -g mouse off
28
29# Removes the double pressing. Fixes switching panes and pressing up right
30# after switching panes. Must have!
31bind-key Up select-pane -U
32bind-key Down select-pane -D
33bind-key Left select-pane -L
34bind-key Right select-pane -R