From f7180602609a17dc76353c99078a886a33729739 Mon Sep 17 00:00:00 2001 From: Sravanth C <54331348+chebro@users.noreply.github.com> Date: Thu, 16 Dec 2021 13:02:49 +0530 Subject: [PATCH] Rename esc_insertmode to better_escape - change the plugin status name for better_escape --- lua/core/default_config.lua | 2 +- lua/plugins/init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/core/default_config.lua b/lua/core/default_config.lua index 7d4ed1c..7d06d30 100644 --- a/lua/core/default_config.lua +++ b/lua/core/default_config.lua @@ -62,7 +62,7 @@ M.plugins = { colorizer = false, -- color RGB, HEX, CSS, NAME color codes comment = true, -- easily (un)comment code, language aware dashboard = false, - esc_insertmode = true, -- map to with no lag + better_escape = true, -- map to with no lag feline = true, -- statusline gitsigns = true, lspsignature = true, -- lsp enhancements diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index a622e29..ece2de4 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -116,7 +116,7 @@ return packer.startup(function() use { "max397574/better-escape.nvim", - disable = not plugin_settings.status.esc_insertmode, + disable = not plugin_settings.status.better_escape, event = "InsertEnter", config = override_req("better_escape", "(plugins.configs.others).better_escape()"), }