return { "nvim-telescope/telescope.nvim", dependencies = { "nvim-lua/plenary.nvim", }, config = function() local telescope = require("telescope") local telescopeBuiltin = require("telescope.builtin") telescope.setup({}) local whichKey = require("which-key") whichKey.add({ { "t", group = "Telescope" }, { "th", function() telescopeBuiltin.help_tags() end, desc = "Help Tags" }, { "tt", function() telescopeBuiltin.treesitter() end, desc = "Treesitter" }, { "tf", function() telescopeBuiltin.find_files() end, desc = "Files" }, { "tw", function() telescopeBuiltin.live_grep() end, desc = "Words" }, { "tc", function() telescopeBuiltin.colorscheme() end, desc = "Colorscheme" }, { "tg", function() telescopeBuiltin.git_files() end, desc = "Colorscheme" }, }) end, }