Removing the oddly overlapping options starting with 'w'

This commit is contained in:
Finch 2024-03-06 12:29:48 -06:00
parent 1e55d6394d
commit a6e9de00c1

View File

@ -1,5 +1,4 @@
local cf = require('custom_functions')
vim.g.mapleader = ','
-- Standard keybinding options
@ -22,11 +21,6 @@ vim.keymap.set('n', '<C-k>', '<C-w>k', options)
vim.keymap.set('n', '<C-h>', '<C-w>h', options)
vim.keymap.set('n', '<C-l>', '<C-w>l', options)
vim.keymap.set('n', 'wj', '<C-w>j', options)
vim.keymap.set('n', 'wk', '<C-w>k', options)
vim.keymap.set('n', 'wh', '<C-w>h', options)
vim.keymap.set('n', 'wl', '<C-w>l', options)
-- Increment and decrement under the cursor
vim.keymap.set('n', '+', '<C-a>')
vim.keymap.set('v', '+', '<C-a>')