mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 16:51:33 +00:00
9 lines
188 B
Lua
9 lines
188 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
opts = function()
|
|
local keys = require("lazyvim.plugins.lsp.keymaps").get()
|
|
-- disable a keymap
|
|
keys[#keys + 1] = { "K", false }
|
|
end,
|
|
}
|