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}"