tmux: increase history limit

This commit is contained in:
Peter Cai 2021-02-10 20:28:29 +08:00
parent 680b2c8150
commit 715c8a3a34

View file

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