Neovim/lua/plugins/telescope.lua

24 lines
538 B
Lua
Raw Normal View History

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