diff --git a/.tmux.conf b/.tmux.conf index 8019e4de..4c46fe6b 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -10,4 +10,12 @@ bind - split-window -v # Enable mouse support set -g mouse on +# Toggle bottom status bar with Ctrl-x + z bind-key z set -g status + +# Navigate tmux panes with Vim style navigation Ctrl-x + hjkl +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +