commit 4239f4c5fc00de842965519cfaa5388a153e80b0 (patch)
parent d1d780f3b733cd6d7e350c5b1b3df0e02eb7dff2
Author: Alex Karle <alex@alexkarle.com>
Date: Thu, 15 Oct 2020 23:16:47 -0400
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?).
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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