diff --git a/.config/nvim/lua/config/keymaps.lua b/.config/nvim/lua/config/keymaps.lua index 6ea0693a..5aee4460 100644 --- a/.config/nvim/lua/config/keymaps.lua +++ b/.config/nvim/lua/config/keymaps.lua @@ -126,7 +126,7 @@ map("i", "", "", { desc = "Start Of Line" }) map("i", "", "", { desc = "End Of Line" }) -- Select all text -map("n", "", "ggG", { desc = "Select all text", silent = true, noremap = true }) +map("n", "", "ggG", { desc = "Select all text", silent = true, noremap = true }) -- Paste options map("i", "", '"', { desc = "Paste on insert mode" }) diff --git a/.config/nvim/lua/plugins/extras/editor/telescope/lazy.lua b/.config/nvim/lua/plugins/extras/editor/telescope/lazy.lua index 752e10a5..152ab98d 100644 --- a/.config/nvim/lua/plugins/extras/editor/telescope/lazy.lua +++ b/.config/nvim/lua/plugins/extras/editor/telescope/lazy.lua @@ -6,6 +6,6 @@ return { end) end, keys = { - { "sp", "Telescope lazy", desc = "Plugins (Lazy)" }, + { "sP", "Telescope lazy", desc = "Plugins (Lazy)" }, }, }