Neovim/lua/plugins/telescope.lua

18 lines
460 B
Lua
Raw Normal View History

2023-11-17 11:24:21 +00:00
return {
{
"nvim-telescope/telescope.nvim",
opts = {
defaults = {
layout_strategy = "horizontal",
layout_config = { prompt_position = "top" },
sorting_strategy = "ascending",
winblend = 0,
},
},
dependencies = {
"sharkdp/fd",
"nvim-lua/plenary.nvim",
'nvim-tree/nvim-web-devicons'
},
},
}