X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tmux.conf;h=09c6ed3128d47e51ec5c40c152e85413863f466f;hb=87cd0352cf1e8270c2282cc43e300a8ef6582d2f;hp=1083a7f6831b216dd13f28b8af490278c424f965;hpb=741ed2c1b41ab61b52971b3d4422ebdaa107dde1;p=config%2Fdotfiles.git diff --git a/tmux.conf b/tmux.conf index 1083a7f..09c6ed3 100644 --- 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,6 +85,10 @@ bind-key C-] paste-buffer bind-key -t vi-edit C-n history-down bind-key -t vi-edit C-p history-up +# Display date/time, similar to GNU screen's ^a ^t. Tmux's default ^a t just +# displays the current time, but I often want to know the current date. +bind-key C-t display-message + # 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.