nvim-config/lua/plugins/telescope-nvim.lua
2024-12-24 23:01:45 -06:00

32 lines
701 B
Lua

-- Fuzzy finder
return {
-- https://github.com/nvim-telescope/telescope.nvim
'nvim-telescope/telescope.nvim',
lazy = true,
dependencies = {
-- https://github.com/nvim-lua/plenary.nvim
{ 'nvim-lua/plenary.nvim' },
{
-- https://github.com/nvim-telescope/telescope-fzf-native.nvim
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make',
cond = function()
return vim.fn.executable 'make' == 1
end,
},
},
opts = {
defaults = {
layout_config = {
vertical = {
width = 0.75
}
},
path_display = {
filename_first = {
reverse_directories = true
}
},
}
}
}