From 4b25ee68e3f8113a7d078dd278667e874003c9ed Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sat, 16 Jun 2012 19:05:45 -0500 Subject: [PATCH] Some cleanup and rearranging of tmux.conf --- tmux/tmux.conf.symlink | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tmux/tmux.conf.symlink b/tmux/tmux.conf.symlink index 3486e70..53df8e8 100644 --- a/tmux/tmux.conf.symlink +++ b/tmux/tmux.conf.symlink @@ -1,3 +1,8 @@ +# tmux display things in 256 colors +set -g default-terminal "screen-256color" + +set -g history-limit 20000 + # unbind default prefix and set it to Ctrl+a unbind C-b set -g prefix C-a @@ -9,8 +14,12 @@ bind C-a send-prefix # make delay shorter set -sg escape-time 0 +# tile all windows +unbind = +bind = select-layout tiled + # cycle through panes -unbind ^A +unbind C-a unbind o # this is the default key for cycling panes bind ^A select-pane -t:.+ @@ -57,9 +66,6 @@ set -g mouse-select-pane off set -g mouse-resize-pane off set -g mouse-select-window off -# tmux display things in 256 colors -set -g default-terminal "screen-256color" - # maximizing and restoring windows unbind Up bind Up new-window -d -n fullscreen \; swap-pane -s fullscreen.1 \; select-window -t fullscreen