From 07239a07b0c75f1d46595938b830fa3eedbdbbe2 Mon Sep 17 00:00:00 2001 From: Max Bucknell Date: Sat, 2 May 2015 18:39:33 +0100 Subject: [PATCH] Basic tmux config --- tmux/tmux.conf.symlink | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tmux/tmux.conf.symlink diff --git a/tmux/tmux.conf.symlink b/tmux/tmux.conf.symlink new file mode 100644 index 0000000..1d3be3d --- /dev/null +++ b/tmux/tmux.conf.symlink @@ -0,0 +1,9 @@ +# remap prefix to Control + a +set -g prefix C-a +unbind C-b +bind C-a send-prefix + +# quick pane cycling +unbind ^A +bind ^A select-pane -t :.+ +