From b1ed1c2569ffec17d6fc85e043982ac1a8c8861e Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 6 Jun 2011 22:00:17 +0200 Subject: [PATCH] tmux.conf: Add terminal options. --- tmux.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tmux.conf b/tmux.conf index 8268798..37a86ff 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,6 +1,21 @@ # Tmux configuration file. +# TERMINAL + +# Disable alternative screen feature. This way e.g. Vim's window content stays +# visible after quitting Vim. This is quite useful to copy data (needs tmux +# 1.5 to work completely). +set-window-option -g alternate-screen off + +# Set title for outer terminal. +set-option -g set-titles on + +# Don't rename windows to the currently running program, my zshrc does this +# for me (with some additional features). +set-window-option -g automatic-rename off + + # STATUS LINE # White text. -- 2.44.1