Files
lazy_config/lua/plugins/which-key.lua
2024-08-25 18:14:59 -04:00

15 lines
247 B
Lua

return {
{
"folke/which-key.nvim",
config = function()
local wk = require("which-key")
wk.add(
{
{ "<leader><leader>cL", ":LspRestart<CR>", desc = "Restart LSP"},
}
)
end,
},
}