From e7950245707a943db349166c47dd49d5caadaa43 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 11 Oct 2018 11:24:46 +0300 Subject: [PATCH] tmux.conf: lower escape-delay to 300 for NVim's :checkhealth I am not sure what it does, so I am not using their adviced 10, but instead 300 which is the maximum the :checkhealth doesn't complain about. --- conf/tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/tmux.conf b/conf/tmux.conf index 1a981cc8..d5396262 100644 --- a/conf/tmux.conf +++ b/conf/tmux.conf @@ -37,3 +37,8 @@ set -g default-command "${SHELL}" # Resize window (not session) based on the smallest client viewing it setw -g aggressive-resize on + +# Lower escape-time to make Neovim's :checkhealth happy +set -g escape-time 300 +# Or for tmux >= 2.6 +set -sg escape-time 300