diff options
Diffstat (limited to 'lua/ache/plugins/which-key.lua')
| -rw-r--r-- | lua/ache/plugins/which-key.lua | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lua/ache/plugins/which-key.lua b/lua/ache/plugins/which-key.lua index 9675559..33b1f3e 100644 --- a/lua/ache/plugins/which-key.lua +++ b/lua/ache/plugins/which-key.lua @@ -1,9 +1,14 @@ +--[ +-- Show a helpful remainder when you start typing a shortkey. +-- +-- After some time of hesitation, "which-key" will show all the available mapping and describe them. +--] return { - "folke/which-key.nvim", - event = "VeryLazy", - init = function() - vim.opt.timeout = true - vim.opt.timeoutlen = 500 - end, - opts = {}, -- Use default configuration. + "folke/which-key.nvim", + event = "VeryLazy", + init = function() + vim.opt.timeout = true + vim.opt.timeoutlen = 500 + end, + opts = {}, -- Use default configuration. } |