From 03ac137c3c44f2dde8f1fcef81eba2bb88c0986d Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 8 Sep 2023 08:44:34 -0500 Subject: [PATCH] refactor(nvim): remove split movement keys These keys were never really used --- dots/.config/nvim/lua/core/mappings.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dots/.config/nvim/lua/core/mappings.lua b/dots/.config/nvim/lua/core/mappings.lua index e8be5f20..0df2dbbc 100755 --- a/dots/.config/nvim/lua/core/mappings.lua +++ b/dots/.config/nvim/lua/core/mappings.lua @@ -56,12 +56,6 @@ M.setup = function() vim.opt.spell = not vim.opt.spell:get() end, { silent = true, desc = "Toggle Spell" }) - -- Better split movement - vim.keymap.set("n", "", "l", { silent = true }) - vim.keymap.set("n", "", "h", { silent = true }) - vim.keymap.set("n", "", "k", { silent = true }) - vim.keymap.set("n", "", "j", { silent = true }) - -- Set current focused file as cwd vim.keymap.set("n", "cd", ":cd %:p:h", { silent = true, desc = "Change CWD to Current File" })