How do i remap the "K" key in the lazyvim window? #1953
Unanswered
redsuperbat
asked this question in
Q&A
Replies: 1 comment
-
The So here, the So you have to unmap the Each project have a different LSP integration and way to overwrite the defaults. With Lazy, it seems really Easy. -- LSP keymaps
{
"neovim/nvim-lspconfig",
opts = function()
local keys = require("lazyvim.plugins.lsp.keymaps").get()
-- disable a keymap
keys[#keys + 1] = { "K", false }
end,
} I hope it works for you. :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to map the hover functionality in Lazy to
O
instead ofK
since I have remappedK
in my regular neovim usage. How would I do that in this plugin? It does not seem to work by overriding it in the custom keys:Beta Was this translation helpful? Give feedback.
All reactions