From 036d440c6c8e241df2f178306be2e20230818dad Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 25 Dec 2023 11:03:04 -0600 Subject: [PATCH] refactor(nvim): remove `` binding for toggling folds `` interferes with `` and `` is *much* more useful. --- dots/.config/nvim/lua/core/mappings.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/dots/.config/nvim/lua/core/mappings.lua b/dots/.config/nvim/lua/core/mappings.lua index 4fe353af..882d5fd8 100755 --- a/dots/.config/nvim/lua/core/mappings.lua +++ b/dots/.config/nvim/lua/core/mappings.lua @@ -105,9 +105,6 @@ M.setup = function() -- Binding to allow shift tab dedent vim.keymap.set("i", "", "", { silent = true, desc = "Insert: Dedent" }) - - -- Binding to make tab toggle fold - vim.keymap.set("n", "", "za", { silent = true, desc = "Fold: Toggle" }) end return M