summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/config/lazy.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua
index d4e9f43..053220c 100644
--- a/nvim/lua/config/lazy.lua
+++ b/nvim/lua/config/lazy.lua
@@ -81,6 +81,20 @@ require("lazy").setup({
fallback = "dark",
}
},
+ {
+ "folke/which-key.nvim",
+ event = "VeryLazy",
+ opts = {},
+ keys = {
+ {
+ "<leader>?",
+ function()
+ require("which-key").show({ global = false })
+ end,
+ desc = "Buffer Local Keymaps (which-key)",
+ },
+ },
+ }
},
install = { colorscheme = { "gruvbox" } },
checker = { enabled = true, notify = false },