summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/which-key.lua
blob: f6369151d259f2a5b097db19515ff105cdc16004 (plain)
1
2
3
4
5
6
7
8
9
return {
  "folke/which-key.nvim",
  event = "VeryLazy",
  config = function()
    require("which-key").register({
      { "<leader>f", group = "Telescope" },
    })
  end,
}