From f948c41268fecff787feb8913ad950f16f67ee2e Mon Sep 17 00:00:00 2001 From: Naz Date: Sat, 8 Feb 2025 12:09:09 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20add=20folke/which-key.nvim=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/plugins/which-key.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/plugins/which-key.lua (limited to 'lua/plugins') diff --git a/lua/plugins/which-key.lua b/lua/plugins/which-key.lua new file mode 100644 index 0000000..8b85fc2 --- /dev/null +++ b/lua/plugins/which-key.lua @@ -0,0 +1,18 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }, + keys = { + { + "?", + function() + require("which-key").show({ global = false }) + end, + desc = "Buffer Local Keymaps (which-key)", + }, + }, +} -- cgit v1.2.3