From 35da498b9b14a1ebd4ea51e8bc43fc524216f7c6 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Wed, 18 Dec 2024 09:28:38 +0100 Subject: [PATCH] Add which key for testing --- lua/plugins.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index 444ea8e..2906bda 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -87,4 +87,20 @@ return { "mhartington/formatter.nvim", { "TamaMcGlinn/nvim-lspconfig-ada" }, "sainnhe/sonokai", + + -- Plugins to test + { + "folke/which-key.nvim", + event = "VeryLazy", + opts = {}, + keys = { + { + "?", + function() + require("which-key").show({ global = false }) + end, + desc = "Buffer Local Keymaps (which key)", + }, + }, + }, }