11 lines
205 B
Lua
11 lines
205 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
cond = not vim.g.vscode,
|
|
keys = { "<leader>" },
|
|
init = function()
|
|
vim.o.timeout = true
|
|
vim.o.timeoutlen = 300
|
|
end,
|
|
config = true,
|
|
}
|