dotfiles/nvim/lua/plugins/telescope.lua

13 lines
321 B
Lua
Raw Normal View History

2024-12-19 20:50:42 +00:00
return {
"nvim-telescope/telescope.nvim",
branch = "0.1.x",
dependencies = {
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
{ "nvim-telescope/telescope-ui-select.nvim" },
"nvim-lua/plenary.nvim",
},
config = function()
require "my.telescope"
end
}