commit 30eccb2b635db28fc7f59af0318992bbc943cc86 parent b4dc8345eb8e9cc663175c5a322c39844ec2baa6 Author: Anders Damsgaard <adc@geo.au.dk> Date: Wed, 31 Oct 2012 07:54:39 +0100 tmux hotkey now C-a Diffstat:
M | .tmux.conf | | | 13 | ++++++++----- |
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf @@ -1,9 +1,12 @@ -bind r source-file ~/.tmux.conf \; display "Source file reloaded" +set -g prefix C-a +unbind % + +bind-key k select-pane -U +bind-key j select-pane -D +bind-key h select-pane -L +bind-key l select-pane -R -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R +bind r source-file ~/.tmux.conf \; display "Source file reloaded" set -g default-terminal "screen-256color"