Files
nixos-config/home/programs/neovim/lua/plugins/which-key-nvim.lua
2024-05-02 08:43:29 +02:00

13 lines
195 B
Lua

return {
{
"folke/which-key.nvim",
optional = true,
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {},
},
}