From 37570bd6af5ba4fcd0a78f020b6fbdcc496b131e Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sun, 13 Apr 2014 14:06:32 -0600 Subject: [PATCH] added tmux --- tmux.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tmux.conf diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..7ded1c6 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,13 @@ +set -g terminal-overrides "xterm*:smcup@:rmcup@" +#remap prefix to ctrl + a +unbind C-b +set -g prefix C-a +#C-a C-a go to last active window +bind-key C-a last-window +#send prefix in multiple sessions +bind-key a send-prefix +#start window numbering at 1 +set -g base-index 1 +#Faster command sequence +set -s escape-time 0 +