summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/which-key.lua
blob: 2a27a2c76a186bb2a65acf10676bb4d947e4f387 (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"] = { name = "+Telescope" },
    })
  end,
}