From a6e9de00c188a00b4866c0e84a4a99a36317ce04 Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Wed, 6 Mar 2024 12:29:48 -0600 Subject: [PATCH] Removing the oddly overlapping options starting with 'w' --- nvim/lua/keymappings.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nvim/lua/keymappings.lua b/nvim/lua/keymappings.lua index eece612..c2baf3e 100644 --- a/nvim/lua/keymappings.lua +++ b/nvim/lua/keymappings.lua @@ -1,5 +1,4 @@ local cf = require('custom_functions') - vim.g.mapleader = ',' -- Standard keybinding options @@ -22,11 +21,6 @@ vim.keymap.set('n', '', 'k', options) vim.keymap.set('n', '', 'h', options) vim.keymap.set('n', '', 'l', options) -vim.keymap.set('n', 'wj', 'j', options) -vim.keymap.set('n', 'wk', 'k', options) -vim.keymap.set('n', 'wh', 'h', options) -vim.keymap.set('n', 'wl', 'l', options) - -- Increment and decrement under the cursor vim.keymap.set('n', '+', '') vim.keymap.set('v', '+', '')