]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tmux.conf
*: License under GPL v3+.
[config/dotfiles.git] / tmux.conf
index 8268798cfd992349aa0e6994b4212917bd985165..e4d3340b38007c0f58ad86fcd9b56a545620c658 100644 (file)
--- a/tmux.conf
+++ b/tmux.conf
@@ -1,5 +1,44 @@
 # Tmux configuration file.
 
+# Copyright (C) 2011-2012  Simon Ruderich
+#
+# This file is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This file is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this file.  If not, see <http://www.gnu.org/licenses/>.
+
+
+# GENERAL
+
+# Use a larger window history, in lines.
+set-option -g history-limit 10000
+
+# Display messages for three seconds.
+set-option -g display-time 3000
+
+
+# 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
 
@@ -13,6 +52,11 @@ set-option -g status-left ""
 # Current load average and hostname on the right.
 set-option -g status-right "#(uptime | cut -d: -f5- | tr -d ,) #H"
 
+# Format for windows in the window list in the status line. #I window index,
+# #W window number, #F window flags.
+set-window-option -g window-status-format         "#I #W#F"
+set-window-option -g window-status-current-format "#I #W#F"
+
 
 # BINDINGS
 
@@ -29,10 +73,13 @@ unbind-key C-b
 # GNU screen like bindings (with C-x).
 bind-key C-c new-window
 bind-key C-a last-window
-# Switch to next/previos window, like in GNU screen.
 bind-key C-n next-window
 bind-key C-p previous-window
 bind-key C-[ copy-mode
 bind-key C-] paste-buffer
 
+# Arrow-key replacements for tmux's prompt.
+bind-key -t vi-edit C-n history-down
+bind-key -t vi-edit C-p history-up
+
 # vim: ft=tmux