summaryrefslogtreecommitdiffstats
path: root/examples/lazy/lua/plugins/telescope.lua
blob: 6ca09147971971ba684cd20ddda0ecaa5257410e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
return {
  "nvim-telescope/telescope.nvim",
  cmd = "Telescope",
  event = "VeryLazy",
  opts = {},
  keys = {
    {
      "<leader>tp",
      function()
        require("telescope.builtin").find_files()
      end,
    },
    {
      "<leader>tg",
      function()
        require("telescope.builtin").live_grep()
      end,
    },
  },
}