Add S-F1 shortcut to view key hints

This commit is contained in:
Daniel McKnight 2025-06-13 09:23:01 -07:00
parent 4aaf3ee9fa
commit acb933d735
2 changed files with 14 additions and 4 deletions

View file

@ -39,6 +39,20 @@ return {
-- vim.g.barbar_auto_setup = false -- vim.g.barbar_auto_setup = false
--end, --end,
}, },
{
"folke/which-key.nvim",
event = "VeryLazy",
keys = {
{
"<S-F1>",
function()
require("which-key").show()
end,
mode = { "n", "v", "i" },
},
},
},
{ {
"goolord/alpha-nvim", "goolord/alpha-nvim",
vim.keymap.set("n", "<A-left>", ":BufferPrevious<CR>", { desc = "Previous Buffer" }), vim.keymap.set("n", "<A-left>", ":BufferPrevious<CR>", { desc = "Previous Buffer" }),

View file

@ -1,4 +0,0 @@
return {
"folke/which-key.nvim",
event = "VeryLazy"
}