From 715c8a3a349510987957cdcb5dc92b611ca5518f Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Wed, 10 Feb 2021 20:28:29 +0800 Subject: [PATCH] tmux: increase history limit --- tmux/.tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 9096d72..e74ce32 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -4,6 +4,9 @@ set-option -g default-terminal "screen-256color" # Allow mouse input (to switch window / panes) set -g mouse on +# Increase history size +set-option -g history-limit 10000 + # Set new panes to open in current directory bind c new-window -c "#{pane_current_path}" bind '"' split-window -c "#{pane_current_path}"