Compare commits

...

2 Commits

Author SHA1 Message Date
d8763db08d [tmux] increased scrollback up to 10k lines 2024-07-04 20:28:05 +03:00
26528c66e1 zsh tmux history sharing 2024-07-04 20:27:39 +03:00
2 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ set -g default-terminal "screen-256color"
set -g mouse on set -g mouse on
set -g set-clipboard external set -g set-clipboard external
set -g escape-time 10 # https://www.johnhawthorn.com/2012/09/vi-escape-delays/ set -g escape-time 10 # https://www.johnhawthorn.com/2012/09/vi-escape-delays/
set -g history-limit 10000
set-option -g status-position top set-option -g status-position top
set-window-option -g allow-rename off set-window-option -g allow-rename off
set allow-rename off set allow-rename off

View File

@@ -5,3 +5,6 @@ then
autoload -Uz compinit autoload -Uz compinit
compinit compinit
fi fi
setopt appendhistory # Append history to the history file (no overwriting)
setopt incappendhistory # Immediately append to the history file, not just when a term is killed