We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
plugins/which-key.lua
return { "folke/which-key.nvim", event = "VeryLazy", init = function() vim.o.timeout = true vim.o.timeoutlen = 500 end, keys = function() return {} -- <--should remove all default mappings end }
I have tried overriding defaults as well as overriding keys but have been unsuccessful. Am I missing something?
keys
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
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?The text was updated successfully, but these errors were encountered: