X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tmux.conf;h=fbecbad79932c6f0c5a8cdf50bcfbf972aebf19f;hb=578959cbecd604285356baddd36f4c3178b0a127;hp=37a86ffcc84fa1c88f19d9a534b839804f7d1fc9;hpb=b1ed1c2569ffec17d6fc85e043982ac1a8c8861e;p=config%2Fdotfiles.git diff --git a/tmux.conf b/tmux.conf index 37a86ff..fbecbad 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,6 +1,15 @@ # 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 @@ -28,6 +37,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 @@ -44,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