Open brymon68 opened 2 months ago
I use the following hack.
./config/nvim/lua/plugins/default_bindings_disabled.lua:
return { { "LazyVim/LazyVim", opts = { defaults = { -- Disable all default key bindings keymaps = false, }, }, }, }
This setup will give you complete control over all key mappings in LazyVim, allowing only the ones you define.
I am trying to completely disable all default which-key bindings (besides those defined in my keymaps) but have been unsuccessful.
In my
plugins/which-key.lua
file I have:I have tried overriding defaults as well as overriding
keys
but have been unsuccessful. Am I missing something?