X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=.tmux.conf;h=e834f093021796305208d716380736bc621b472f;hb=094bc317ad7d7907a5c87477530db4d24bf1c534;hp=76a9eb34403a9590359c0edd7edbda8a1893ea3f;hpb=c1097d966d9eab20f4a59d1d176c91f40e8aa39b;p=profile.git diff --git a/.tmux.conf b/.tmux.conf index 76a9eb3..e834f09 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -13,6 +13,9 @@ set -s escape-time 100 setw -g clock-mode-colour white setw -g clock-mode-style 24 +# Scrollback buffer. +set -g history-limit 4096 + ################################################################################ # Screen compatibility. ################################################################################ @@ -62,6 +65,8 @@ bind = display-panes bind b break-pane # Split another pane into this window. bind B command-prompt -p "Select [.] to join:" 'join-pane -s %1' +# Split vertically. +bind C-\ split-window -v # Next pane. bind i select-pane -t :.+ bind C-i select-pane -t :.+ @@ -111,7 +116,7 @@ bind -t vi-copy y copy-selection ################################################################################ set -g default-terminal 'screen-256color' # PuTTY needs help to set bold colours. -set -g terminal-overrides 'putty-256color:C8' +set -a -g terminal-overrides ',putty-256color:C8' ################################################################################ # Window and pane settings.