summaryrefslogtreecommitdiff
path: root/lua/config/plugins/extra.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/plugins/extra.lua')
-rw-r--r--lua/config/plugins/extra.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua
new file mode 100644
index 0000000..8cf9e70
--- /dev/null
+++ b/lua/config/plugins/extra.lua
@@ -0,0 +1,13 @@
+return {
+ {
+ "which-key.nvim",
+ event = "DeferredUIEnter",
+ after = function(_)
+ require("which-key").setup()
+
+ require("which-key").add({
+ { "<leader>s", group = "search" },
+ })
+ end,
+ },
+}