dotfiles/neovim/.config/nvim/lua/plugins/telescope.lua
2024-06-25 10:18:09 -06:00

15 lines
509 B
Lua

return {{
-- Telescope
-- Find, Filter, Preview, Pick. All lua, all the time.
"nvim-telescope/telescope.nvim",
dependencies = {"nvim-lua/plenary.nvim", {
"nvim-telescope/telescope-fzf-native.nvim",
build = "make"
}},
config = function(_)
require("telescope").setup()
-- To get fzf loaded and working with telescope, you need to call
-- load_extension, somewhere after setup function:
require("telescope").load_extension("fzf")
end
}}