Compare commits

...

2 Commits

Author SHA1 Message Date
b5b923d2dd dot_config/tmux/tmux.conf: window titles
Forward window titles. This even works on remote systems over SSH.
2025-11-13 20:08:19 +03:00
3db78f8d27 dot_config/tmux/tmux.conf: increase scrollback history
This has been set at 4096 for probably ten years. Since the memory
impact is minimal and and every system I use has a minimum of 16GB
of RAM, I think this is a useful tradeoff.
2025-11-13 19:55:10 +03:00

View File

@@ -100,7 +100,7 @@ set-option -g status-left ''
set-option -g status-right '#[fg=colour47]#H #[fg=red]#(cut -d " " -f 1-3 /proc/loadavg) #[fg=colour227]%Y-%m-%d %H:%M#[default]'
# scrollback buffer
set-option -g history-limit 4096
set-option -g history-limit 8192
# 2022-11-26: According to the tmux FAQ, inside tmux TERM must be "screen",
# "tmux" or similar (such as "tmux-256color"). As of CentOS Stream 8, now
@@ -141,3 +141,8 @@ set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# Forward window titles to the parent terminal, but only hostname and
# process.
set -g set-titles on
set -g set-titles-string "#h: #W"