summaryrefslogtreecommitdiff
path: root/lua/plugins/whichkey.lua
blob: 6a14c8aa2f7c213da64f3ebec6dcea5f844c395f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
	"folke/which-key.nvim",
	event = "VeryLazy",
	init = function()
		vim.o.timeout = true
		vim.o.timeoutlen = 300
	end,
	opts = {
		-- your configuration comes here
		-- or leave it empty to use the default settings
		-- refer to the configuration section below
	},
}