1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
local M = {
"nvim-telescope/telescope.nvim",
commit = "203bf5609137600d73e8ed82703d6b0e320a5f36",
event = "Bufenter",
cmd = { "Telescope" },
dependencies = {
{
"ahmedkhalf/project.nvim",
commit = "685bc8e3890d2feb07ccf919522c97f7d33b94e4",
},
},
}
local actions = require "telescope.actions"
M.opts = {
defaults = {
prompt_prefix = " ",
selection_caret = " ",
path_display = { "smart" },
file_ignore_patterns = { ".git/", "node_modules" },
mappings = {
i = {
["<Down>"] = actions.move_selection_next,
["<Up>"] = actions.move_selection_previous,
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
},
},
},
}
return M
|