From 11e173ec8f65b5af05de94b13fd8f002b98bdabe Mon Sep 17 00:00:00 2001 From: Proctor Date: Mon, 22 Oct 2012 16:53:04 -0500 Subject: [PATCH] Initial tmux.conf checkin --- tmux.conf | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tmux.conf diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..d788902 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,36 @@ +set -g prefix C-a +unbind C-b + +set -s escape-time 1 + +set -g base-index 1 +setw -g pane-base-index 1 + +bind r source-file ~/.tmux.conf \; display "Reloaded!" + +bind C-a send-prefix + +bind | split-window -h +bind - split-window -v + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +bind -r C-h select-window -t :- +bind -r C-l select-window -t :+ + +bind H resize-pane -L 5 +bind J resize-pane -D 5 +bind K resize-pane -U 5 +bind L resize-pane -R 5 + +setw -g mode-mouse off + +set -g default-terminal "screen-256color" + +set -g window-status-attr dim +set -g window-status-current-attr bright + +setw -g mode-keys vi