diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-02-08 12:09:09 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-02-08 12:09:09 +0100 |
| commit | f948c41268fecff787feb8913ad950f16f67ee2e (patch) | |
| tree | 3b3e223e7eeeec4b2ec4206c94e3022f599b7605 | |
| parent | f691131635782c53ab1f3bebd12a793906e73ba5 (diff) | |
✨feat: add folke/which-key.nvim plugin
| -rw-r--r-- | lua/plugins/which-key.lua | 18 |
1 files changed, 18 insertions, 0 deletions
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 = { + { + "<leader>?", + function() + require("which-key").show({ global = false }) + end, + desc = "Buffer Local Keymaps (which-key)", + }, + }, +} |
