From 1a336305ed2627d73aa0a4b0dc866a8aaf202476 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 15 Nov 2023 03:02:32 -0600 Subject: [PATCH] refactor(nvim): disable termsync --- dots/.config/nvim/lua/core/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dots/.config/nvim/lua/core/options.lua b/dots/.config/nvim/lua/core/options.lua index d416fc3a..03960a34 100755 --- a/dots/.config/nvim/lua/core/options.lua +++ b/dots/.config/nvim/lua/core/options.lua @@ -139,6 +139,9 @@ M.setup = function() -- Allow per project configuration via exrc opt.exrc = true + + -- Disable termsync, this fucks with Wezterm big time + opt.termsync = false end return M