2023-05-04 12:39:25 +01:00
|
|
|
return {
|
|
|
|
"folke/which-key.nvim",
|
2023-05-31 16:47:30 +01:00
|
|
|
cond = not vim.g.vscode,
|
2023-05-22 08:31:58 +01:00
|
|
|
keys = { "<leader>" },
|
2023-05-17 14:57:53 +01:00
|
|
|
init = function()
|
2023-05-04 12:39:25 +01:00
|
|
|
vim.o.timeout = true
|
|
|
|
vim.o.timeoutlen = 300
|
|
|
|
end,
|
2023-05-17 14:57:53 +01:00
|
|
|
config = true,
|
2023-05-04 12:39:25 +01:00
|
|
|
}
|