18 lines
373 B
Lua
18 lines
373 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
event = "VeryLazy",
|
|
init = function()
|
|
vim.o.timeout = true
|
|
vim.o.timeoutlen = 300
|
|
local wk = require("which-key")
|
|
wk.add({
|
|
{ "<leader>sa", name "[S]urround [A]dd" },
|
|
})
|
|
end,
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
},
|
|
}
|