]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tmux.conf
csh/rc: Start zsh as login shell.
[config/dotfiles.git] / tmux.conf
index 916807cc6701dfc97fd62839e9073cdd83e861b7..fbecbad79932c6f0c5a8cdf50bcfbf972aebf19f 100644 (file)
--- a/tmux.conf
+++ b/tmux.conf
@@ -1,6 +1,50 @@
 # Tmux configuration file.
 
 
+# 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
+
+# White text.
+set-option -g status-fg white
+# Bright blue background color (colour12).
+set-option -g status-bg colour12
+
+# Nothing left of window list.
+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
+
 # Use Vi(m) key bindings.
 set-option        -g status-keys vi
 set-window-option -g mode-keys vi
@@ -14,10 +58,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