summaryrefslogtreecommitdiff
path: root/lua/plugins/whichkey.lua
blob: 6f820e0f324634d16ca6762c31230b416101d4dc (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
  }
}