refactor(nvim): remove <tab> binding for toggling folds

`<tab>` interferes with `<C-i>` and `<C-i>` is *much* more useful.
This commit is contained in:
Price Hiller 2023-12-25 11:03:04 -06:00
parent 399397bd23
commit 036d440c6c
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -105,9 +105,6 @@ M.setup = function()
-- Binding to allow shift tab dedent
vim.keymap.set("i", "<S-Tab>", "<C-d>", { silent = true, desc = "Insert: Dedent" })
-- Binding to make tab toggle fold
vim.keymap.set("n", "<Tab>", "za", { silent = true, desc = "Fold: Toggle" })
end
return M