diff --git a/lua/dot013/keymap.lua b/lua/dot013/keymap.lua index 93076f9..35db9b9 100644 --- a/lua/dot013/keymap.lua +++ b/lua/dot013/keymap.lua @@ -1,8 +1,8 @@ vim.keymap.set("n", "d", '"_d', { desc = "Delete to void" }) vim.keymap.set("v", "d", '"_d', { desc = "Delete to void" }) -vim.keymap.set("n", "w\\", ":vsplit", { desc = "Split the windows vertically" }) -vim.keymap.set("n", "w/", ":split", { desc = "Split the windows horizontally" }) +vim.keymap.set("n", "v", ":vsplit", { desc = "Split the windows vertically" }) +vim.keymap.set("n", "h", ":split", { desc = "Split the windows horizontally" }) vim.keymap.set("n", "s=", "z=", { desc = "Suggest spelling currection" }) vim.keymap.set("n", "st", function() @@ -30,4 +30,3 @@ vim.api.nvim_create_autocmd("LspAttach", { end, group = vim.api.nvim_create_augroup("dot013_group", {}), }) -