From 3c4c4f569635d98cd129e80c6297f23a682a4b02 Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Tue, 10 Jan 2023 10:09:51 +0000 Subject: [PATCH] tmux: reduce 'escape' wait time --- tmux.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tmux.conf b/tmux.conf index f67f680..0524685 100644 --- a/tmux.conf +++ b/tmux.conf @@ -27,5 +27,9 @@ set -g @continuum-restore 'on' # Turn on focus events, used by (for example) Vim. set -g focus-events on +# Reduce time waited to see if a key is escape alone or an escape sequence. +set -sg escape-time 10 + # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run -b '~/.tmux/plugins/tpm/tpm' +