26 lines
704 B
Lua
26 lines
704 B
Lua
return {
|
|
'nvim-telescope/telescope.nvim',
|
|
version = false,
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
opts = {
|
|
defaults = {
|
|
path_display = { "smart" },
|
|
},
|
|
pickers = {
|
|
buffers = {
|
|
path_display = "short",
|
|
sort_mru = true,
|
|
ignore_current_buffer = true,
|
|
previewer = false,
|
|
layout_config = {
|
|
width = 80,
|
|
height = 10,
|
|
prompt_position = "top",
|
|
},
|
|
prompt_title = false,
|
|
results_title = false,
|
|
preview_title = false,
|
|
},
|
|
},
|
|
},
|
|
}
|