use mini-clue instead of which-key

This commit is contained in:
Lorran David 2025-01-19 16:54:46 -03:00
parent 96fc0c8d61
commit 6f6e551b8e
2 changed files with 48 additions and 0 deletions

View file

@ -270,6 +270,7 @@ require('lazy').setup({
-- after the plugin has been loaded as `require(MODULE).setup(opts)`.
{ -- Useful plugin to show you pending keybinds.
enabled = false,
'folke/which-key.nvim',
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
opts = {
@ -909,6 +910,9 @@ require('lazy').setup({
-- Minimal autopairs
require('mini.pairs').setup()
-- Which key
require('mini.clue').setup()
-- ... and there is more!
-- Check out: https://github.com/echasnovski/mini.nvim
end,