]> Arthur Taft Gitweb - nvim.git/blob - lua/plugins/telescope.lua
Initial commit
[nvim.git] / lua / plugins / telescope.lua
1 return {
2   { "nvim-lua/plenary.nvim" },
3   {
4     "nvim-telescope/telescope.nvim",
5     opts = {
6       defaults = { layout_config = { prompt_position = "top" }, sorting_strategy = "ascending" },
7       pickers = { find_files = { hidden = true } },
8     },
9   },
10 }