本文 首发于 🌱 煎茶转载 请注明 来源

永久配置

$ vim ~/.tmux.conf
+ set -g history-limit 5000
# 注:默认为2000行,这里设置为5000行

动态配置

$ tmux set-option history-limit 5000
$ tmux

运行时配置

$ tmux
<C-B> :set-option history-limit 5000

References