X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tmux.conf;h=3a3bb78e2654922b519143ce1a34c63454ea57ee;hb=acb0c9f9d65e504ef5a30b3c6250e043d92667a3;hp=e4d3340b38007c0f58ad86fcd9b56a545620c658;hpb=614f9080ac810a2f4c0a5244bca856f3358e625e;p=config%2Fdotfiles.git diff --git a/tmux.conf b/tmux.conf index e4d3340..3a3bb78 100644 --- a/tmux.conf +++ b/tmux.conf @@ -29,7 +29,7 @@ set-option -g display-time 3000 # 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). +# 1.5 to work (almost) completely). set-window-option -g alternate-screen off # Set title for outer terminal. @@ -50,13 +50,16 @@ 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" +set-option -g status-right "#(uptime | sed 's/^.*load averages*: //; s/,//g') #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" +# Update status line commands (#(..)) only every minute. +set-option -g status-interval 60 + # BINDINGS @@ -82,4 +85,9 @@ bind-key C-] paste-buffer bind-key -t vi-edit C-n history-down bind-key -t vi-edit C-p history-up +# Run urlview on the current screen content. Very useful to follow links. +# Thanks to Arch wiki (https://wiki.archlinux.org/index.php/Tmux) for the +# basic idea. +bind-key C-b capture-pane \; save-buffer ~/.tmp/tmux-urlview \; new-window "$SHELL -c 'urlview < ~/.tmp/tmux-urlview'" + # vim: ft=tmux