about summary refs log tree commit diff
path: root/config/nvim/lua/plugins/which-key.lua
blob: c068002f02387b8597896f349cba6ae85e3130b6 (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',
    },
  },
}