return { 'nvim-telescope/telescope.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, config = function() require('telescope').setup({ defaults = { sorting_strategy = "ascending", layout_strategy = 'bottom_pane', layout_config = { height = 10, }, prompt_prefix = "", selection_caret = "", entry_prefix = "", border = true, borderchars = { "─", " ", " ", " ", "─", "─", " ", " " }, preview = false, }, }) local builtin = require('telescope.builtin') vim.keymap.set('n', 'f', builtin.find_files, {}) vim.keymap.set('n', 'r', builtin.live_grep, {}) vim.keymap.set('n', 'b', function() builtin.buffers({ sort_mru = true, ignore_current_buffer = true}) end) end }