nix-config/home/neovim/lua/plugins/which-key.lua

12 lines
223 B
Lua
Raw Normal View History

2023-08-02 16:19:42 +02:00
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
config = function()
require("which-key").setup()
end
}