From 4239f4c5fc00de842965519cfaa5388a153e80b0 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Thu, 15 Oct 2020 23:16:47 -0400 Subject: [PATCH] tmux: Increase history size I've read warnings that a large history can cause high memory usage, but it seems that 10k is reasonable, and an improvement over the default (~2k?). --- .tmux.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/.tmux.conf b/.tmux.conf index 5c2b81a..7bd56da 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -5,6 +5,7 @@ set -g prefix C-a # Who can reach C-b? set -g mouse on # I guess mice are useful sometimes.. set -g mode-keys vi # vi or di set -g base-index 1 # Start windows at 1 +set -g history-limit 10000 # Larget history set -g pane-base-index 1 # Start panes at 1 set -g renumber-windows on # Closed windows renumber set -s escape-time 0 # ESC instantly passed through to process -- libgit2 0.28.4