X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tmux.conf;h=37a86ffcc84fa1c88f19d9a534b839804f7d1fc9;hb=b1ed1c2569ffec17d6fc85e043982ac1a8c8861e;hp=916807cc6701dfc97fd62839e9073cdd83e861b7;hpb=83c703b39b1218f7ca25bfdb3fed125604c57dd2;p=config%2Fdotfiles.git diff --git a/tmux.conf b/tmux.conf index 916807c..37a86ff 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,6 +1,36 @@ # 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. +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" + + +# BINDINGS + # Use Vi(m) key bindings. set-option -g status-keys vi set-window-option -g mode-keys vi