From 2da357f367ff0d48c6243380421b7f118335d616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 8 Feb 2024 11:14:13 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20config(nvim):=20move=20som?= =?UTF-8?q?e=20keymaps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/config/keymaps.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/config/keymaps.lua b/.config/nvim/lua/config/keymaps.lua index 6796bd39..67da88ba 100644 --- a/.config/nvim/lua/config/keymaps.lua +++ b/.config/nvim/lua/config/keymaps.lua @@ -20,7 +20,10 @@ map("n", "lr", function() vim.fn.system({ "xdg-open", "https://github.co map("n", "le", "LazyExtras", { desc = "Extras" }) map("n", "lc", function() Util.news.changelog() end, { desc = "LazyVim Changelog" }) -- stylua: ignore end + +-- Disable LazyVim bindings map("n", "L", "") +map("n", "fT", "") -- Identation map("n", "<", "<<", { desc = "Deindent" }) @@ -29,9 +32,6 @@ map("n", ">", ">>", { desc = "Indent" }) -- Save without formatting map("n", "", "noautocmd w", { desc = "Save without formatting" }) --- Disable lazyterminal keymap -map("n", "fT", "") - -- Cursor navigation on insert mode map("i", "", "", { desc = "Move cursor left" }) map("i", "", "", { desc = "Move cursor left" })