aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins/telescope.lua
blob: 59b67652d32f1da7d95b310b255d59211bb969f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
  "nvim-telescope/telescope.nvim",
  tag = "0.1.6",
  cmd = "Telescope",
  dependencies = {
    "nvim-lua/plenary.nvim"
  },
  opts = {
    pickers = {
      find_files = {
        hidden = true,
        find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/**" },
      },
    },
  },
}