From f248decb13a81ab7367301e4a1fcce81003fa777 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Fri, 13 Dec 2024 16:25:30 -0300 Subject: [PATCH] refactor: panel split --- lua/dot013/keymap.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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", {}), }) -