From 0a15d8ff18067fd22ce40cb5240a0dabda9ccf35 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Sun, 28 Sep 2025 07:03:48 +0100 Subject: [PATCH] feat: add which-key --- lazy-lock.json | 3 ++- lua/plugins/spec/which-key.lua | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/spec/which-key.lua diff --git a/lazy-lock.json b/lazy-lock.json index b0312e5..74fb3f9 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -19,5 +19,6 @@ "nvim-lspconfig": { "branch": "master", "commit": "336b388c272555d2ae94627a50df4c2f89a5e257" }, "nvim-treesitter": { "branch": "main", "commit": "5a70b1eb8cbdf6c7f0a59dfb7356ad198421b620" }, "nvim-web-devicons": { "branch": "master", "commit": "f6b0920f452bfd7595ee9a9efe5e1ae78e0e2997" }, - "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" } + "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, + "which-key.nvim": { "branch": "main", "commit": "904308e6885bbb7b60714c80ab3daf0c071c1492" } } diff --git a/lua/plugins/spec/which-key.lua b/lua/plugins/spec/which-key.lua new file mode 100644 index 0000000..fc338c5 --- /dev/null +++ b/lua/plugins/spec/which-key.lua @@ -0,0 +1,7 @@ +return { + { + "folke/which-key.nvim", + event = "VeryLazy", + opts = {}, + }, +}