aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/which-key.lua
blob: 5b1383ee64d3e3dd826179c2bfc3d5495b6b75ff (plain)
1
2
3
4
5
6
7
8
9
10
return {
  "folke/which-key.nvim",
  lazy = true,
  event = "VeryLazy",
  init = function()
    vim.o.timeout = true
    vim.o.timeoutlen = 500
  end,
  opts = {}
}