From 23476f1d3c1b19d7a9e71b7eea0f0a866646177c Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 11 Jan 2023 17:27:21 +0100 Subject: [PATCH] refactor(keymaps): highlights under cursor is now mapped to `sH` --- lua/lazyvim/config/keymaps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/config/keymaps.lua b/lua/lazyvim/config/keymaps.lua index f8aa7526..3ef74248 100644 --- a/lua/lazyvim/config/keymaps.lua +++ b/lua/lazyvim/config/keymaps.lua @@ -94,7 +94,7 @@ vim.keymap.set("n", "qq", "qa", { desc = "Quit all" }) -- highlights under cursor if vim.fn.has("nvim-0.9.0") == 1 then - vim.keymap.set("n", "hl", vim.show_pos, { desc = "Highlight Groups at cursor" }) + vim.keymap.set("n", "sH", vim.show_pos, { desc = "Highlight Groups at cursor" }) end -- floating terminal