about summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/which-key.lua
blob: 746b3995ac202a6f4fefe6edac0f55943c24fd02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return {
  "folke/which-key.nvim",
  event = "VeryLazy",
  opts = {
    icons = { mappings = false },
    delay = 1000
  },
  keys = {
    {
      "<leader>?",
      function()
        require("which-key").show({ global = false })
      end,
      desc = "Buffer Local Keymaps",
    },
  },
}