10 lines
181 B
Lua
10 lines
181 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
config = function()
|
|
vim.o.timeout = true;
|
|
vim.o.timeoutlen = 300
|
|
require("which-key").setup({
|
|
|
|
})
|
|
end
|
|
}
|