aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-10 12:54:47 -0500
committerCraig Jennings <c@cjennings.net>2026-05-10 12:54:47 -0500
commit1b2af8e6fc84e13be71213042ee194aab192d857 (patch)
treef593cf2330e314a4c4d4902eccdca3eb444da71e
parentf3dc2a905e4328d6fc16aa15d091ec65edcfc120 (diff)
downloadarchsetup-1b2af8e6fc84e13be71213042ee194aab192d857.tar.gz
archsetup-1b2af8e6fc84e13be71213042ee194aab192d857.zip
chore(tmux): double scrollback to 100000 lines
Long-running tmux+vterm sessions (Claude Code's TUI in particular) run past 50k lines often enough that the C-; x C tmux-history-copy command in Emacs can't reach the start. Bump history-limit so `tmux capture-pane' has more room; the cost is roughly 7.5 MB per pane, so a six-pane session adds well under 100 MB total. Existing panes keep their current buffer; the new limit applies only to panes created after the reload.
-rw-r--r--dotfiles/common/.tmux.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/common/.tmux.conf b/dotfiles/common/.tmux.conf
index ea3bc0d..93a3238 100644
--- a/dotfiles/common/.tmux.conf
+++ b/dotfiles/common/.tmux.conf
@@ -72,7 +72,7 @@ bind C-n next-window
bind W last-window
# increase scrollback buffer
-set-option -g history-limit 50000
+set-option -g history-limit 100000
# don't allow suspending client
unbind-key C-z