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