.tmux.conf: add xterm-keys, esc-time-limit-0, etc.
authorColin Patrick McCabe <cmccabe@nvidia.com>
Wed, 12 Oct 2011 18:26:32 +0000 (11:26 -0700)
committerColin Patrick McCabe <cmccabe@nvidia.com>
Wed, 12 Oct 2011 18:26:32 +0000 (11:26 -0700)
Signed-off-by: Colin McCabe <cmccabe@alumni.cmu.edu>

.tmux.conf

index e15bb48..0a1d98d 100644 (file)
@@ -1,12 +1,19 @@
+# turn off esc-wait so that vi works correctly
+set-option -sg  escape-time 0
+
 # use control-K as the prefix
 set -g prefix C-k
 unbind C-b
 bind C-k send-prefix
 
+set-option -g history-limit 100000
+set-window-option -g xterm-keys on
+
 set-window-option -g mode-keys vi
 set-option -g status-keys vi
 set-window-option -g utf8 on
 set-window-option -g mode-mouse on # enable mouse
+set -g default-terminal "screen-256color"
 
 set -g visual-bell off