]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tmux.conf
tmux.conf: Reduce status line updates to one per minute.
[config/dotfiles.git] / tmux.conf
index 2d92790968183d1167d274c48f25fe58690a153c..3a3bb78e2654922b519143ce1a34c63454ea57ee 100644 (file)
--- a/tmux.conf
+++ b/tmux.conf
@@ -57,6 +57,9 @@ set-option -g status-right "#(uptime | sed 's/^.*load averages*: //; s/,//g') #H
 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